Skip to content
Snippets Groups Projects
Commit 8d0d846c authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Fix assert in SimpleSAML_Session::registerLogoutHandler().

parent 1b4374f7
No related branches found
No related tags found
No related merge requests found
...@@ -512,7 +512,7 @@ class SimpleSAML_Session { ...@@ -512,7 +512,7 @@ class SimpleSAML_Session {
* @throws Exception If the handler is not a valid function or method. * @throws Exception If the handler is not a valid function or method.
*/ */
public function registerLogoutHandler($authority, $classname, $functionname) { public function registerLogoutHandler($authority, $classname, $functionname) {
assert('isset($this->authData[$this->authority])'); assert('isset($this->authData[$authority])');
$logout_handler = array($classname, $functionname); $logout_handler = array($classname, $functionname);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment