From 6a4848780fcdbe9dd430175f68eff007ac91b62c Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 15 Oct 2010 13:11:47 -0600 Subject: [PATCH] Prevent undefined errors --- framework/Core/lib/Horde/Registry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {} -- 2.11.0