From 329d748d40ce1556c8b6b52281c16ee149cf5090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pe=CC=81rez?= <jaime.perez@uninett.no> Date: Mon, 5 Dec 2016 12:57:24 +0100 Subject: [PATCH] Fix typo. --- lib/SimpleSAML/Session.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/SimpleSAML/Session.php b/lib/SimpleSAML/Session.php index bdc84fd1f..cc755d84e 100644 --- a/lib/SimpleSAML/Session.php +++ b/lib/SimpleSAML/Session.php @@ -704,14 +704,13 @@ class SimpleSAML_Session implements Serializable return; } foreach ($this->authData[$authority]['LogoutHandlers'] as $handler) { - // verify that the logout handler is a valid function if (!is_callable($handler)) { $classname = $handler[0]; $functionname = $handler[1]; throw new Exception( - 'Logout handler is not a vaild function: '.$classname.'::'. + 'Logout handler is not a valid function: '.$classname.'::'. $functionname ); } -- GitLab