From: Michael M Slusarz Date: Fri, 15 Oct 2010 19:11:47 +0000 (-0600) Subject: Prevent undefined errors X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6a4848780fcdbe9dd430175f68eff007ac91b62c;p=horde.git Prevent undefined errors --- diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 1e1e432c8..85050a0c5 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -1613,7 +1613,7 @@ class Horde_Registry global $session; /* Do logout tasks. */ - foreach (array_keys($session['horde:auth_app/']) as $app) { + foreach (array_keys($session['horde:auth_app/;array']) as $app) { try { $this->callAppMethod($app, 'logout'); } catch (Horde_Exception $e) {}