From: Chuck Hagenbuch Date: Wed, 22 Jul 2009 01:01:51 +0000 (-0400) Subject: no notice if the 'driver' key isn't set in the session X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ce0b066d93b1c3ac2a3e2df4c21eb1ff81a8c508;p=horde.git no notice if the 'driver' key isn't set in the session --- diff --git a/framework/Auth/lib/Horde/Auth.php b/framework/Auth/lib/Horde/Auth.php index 71468f135..c9d317557 100644 --- a/framework/Auth/lib/Horde/Auth.php +++ b/framework/Auth/lib/Horde/Auth.php @@ -372,7 +372,7 @@ class Horde_Auth /* Check for cached authentication results. */ if (self::getAuth() && - (($_SESSION['horde_auth']['driver'] == $driver) || + ((isset($_SESSION['horde_auth']['driver']) && $_SESSION['horde_auth']['driver'] == $driver) || isset($_SESSION['horde_auth']['app'][$driver]))) { return self::checkExistingAuth(); }