From: Michael M Slusarz Date: Wed, 22 Jul 2009 02:59:55 +0000 (-0600) Subject: Revert "no notice if the 'driver' key isn't set in the session" X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=75e7bf7f7ace190aa1cdfc44f07135b333c26bcb;p=horde.git Revert "no notice if the 'driver' key isn't set in the session" This reverts commit ce0b066d93b1c3ac2a3e2df4c21eb1ff81a8c508. --- diff --git a/framework/Auth/lib/Horde/Auth.php b/framework/Auth/lib/Horde/Auth.php index db03db098..79af2b257 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 && - ((isset($_SESSION['horde_auth']['driver']) && $_SESSION['horde_auth']['driver'] == $driver) || + (($_SESSION['horde_auth']['driver'] == $driver) || isset($_SESSION['horde_auth']['app'][$driver]))) { return self::checkExistingAuth(); }