From: Michael J. Rubinsky Date: Wed, 22 Jul 2009 15:40:56 +0000 (-0400) Subject: Existence check X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9f6fe242c7f7b67d7efd8b034ec35de786f436d6;p=horde.git Existence check --- 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(); }