Skip to content
Snippets Groups Projects
Unverified Commit cc98f830 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Replace faulty colon with a semi-colon

Closes https://github.com/simplesamlphp/simplesamlphp/issues/962
parent 52654c61
No related branches found
No related tags found
No related merge requests found
...@@ -485,7 +485,7 @@ class IdP ...@@ -485,7 +485,7 @@ class IdP
if ($assocId !== null) { if ($assocId !== null) {
$this->terminateAssociation($assocId); $this->terminateAssociation($assocId);
$session = Session::getSessionFromRequest(); $session = Session::getSessionFromRequest();
$session->deleteData('core:idp-ssotime', $this->id.':'.$state['saml:SPEntityId']); $session->deleteData('core:idp-ssotime', $this->id.';'.$state['saml:SPEntityId']);
} }
// terminate the local session // terminate the local session
......
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