Skip to content
Snippets Groups Projects
Commit d0963278 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Fix some typos with method Session::getTrackID()

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3225 44740490-163a-0410-bde0-09ae8108e29a
parent a68b1bd9
No related branches found
No related tags found
No related merge requests found
...@@ -219,7 +219,7 @@ class SimpleSAML_Logger { ...@@ -219,7 +219,7 @@ class SimpleSAML_Logger {
$session = SimpleSAML_Session::getInstance(); $session = SimpleSAML_Session::getInstance();
/* Update the trackid. */ /* Update the trackid. */
self::$trackid = $session->getTrackId(); self::$trackid = $session->getTrackID();
} }
assert('is_string(self::$trackid)'); assert('is_string(self::$trackid)');
......
...@@ -265,7 +265,7 @@ class sspmod_saml_SP_LogoutStore { ...@@ -265,7 +265,7 @@ class sspmod_saml_SP_LogoutStore {
continue; continue;
} }
SimpleSAML_Logger::info('saml.LogoutStore: Logging out of session with trackId [' . $session->getTrackId() . '].'); SimpleSAML_Logger::info('saml.LogoutStore: Logging out of session with trackId [' . $session->getTrackID() . '].');
$session->doLogout($authId); $session->doLogout($authId);
$numLoggedOut += 1; $numLoggedOut += 1;
} }
......
...@@ -36,7 +36,7 @@ if ($data === NULL) { ...@@ -36,7 +36,7 @@ if ($data === NULL) {
); );
if (isset($session)) { if (isset($session)) {
$data['trackId'] = $session->getTrackId(); $data['trackId'] = $session->getTrackID();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment