From 9f6fe242c7f7b67d7efd8b034ec35de786f436d6 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Wed, 22 Jul 2009 11:40:56 -0400 Subject: [PATCH] Existence check --- framework/Auth/lib/Horde/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Auth/lib/Horde/Auth.php b/framework/Auth/lib/Horde/Auth.php index 8c5b41d20..59930aaab 100644 --- a/framework/Auth/lib/Horde/Auth.php +++ b/framework/Auth/lib/Horde/Auth.php @@ -373,7 +373,7 @@ class Horde_Auth /* Check for cached authentication results. */ if ($is_auth && - (($_SESSION['horde_auth']['driver'] == $driver) || + ((isset($_SESSION['horde_auth']['driver']) &&$_SESSION['horde_auth']['driver'] == $driver) || isset($_SESSION['horde_auth']['app'][$driver]))) { return self::checkExistingAuth(); } -- 2.11.0