From: Michael M Slusarz Date: Fri, 16 Oct 2009 11:54:15 +0000 (-0600) Subject: Add missing array key X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ea44c02ed4c652b940fdcbec5bc967c424d500e1;p=horde.git Add missing array key --- diff --git a/framework/Auth/lib/Horde/Auth.php b/framework/Auth/lib/Horde/Auth.php index ab387f472..f63075852 100644 --- a/framework/Auth/lib/Horde/Auth.php +++ b/framework/Auth/lib/Horde/Auth.php @@ -673,7 +673,7 @@ class Horde_Auth } return isset($_SESSION['horde_auth']['app']) - ? @unserialize(Horde_Secret::read(Horde_Secret::getKey('auth'), $_SESSION['horde_auth']['app'])) + ? @unserialize(Horde_Secret::read(Horde_Secret::getKey('auth'), $_SESSION['horde_auth']['app'][$app])) : false; }