From: Jan Schneider Date: Sat, 26 Jun 2010 13:57:25 +0000 (+0200) Subject: We have to call the application cache after starting the session. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=26a33b08c4d70abca71dc606d6669f2d0ec59f53;p=horde.git We have to call the application cache after starting the session. --- diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 44ff9984a..f8c88585a 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -333,9 +333,6 @@ class Horde_Registry } } - /* Always need to load applications information. */ - $this->_loadApplicationsCache($vhost); - /* Start a session. */ if ($session_flags & self::SESSION_NONE || (PHP_SAPI == 'cli') || @@ -354,6 +351,9 @@ class Horde_Registry } } + /* Always need to load applications information. */ + $this->_loadApplicationsCache($vhost); + /* Initialize the localization routines and variables. We can't use * Horde_Nls::setLanguageEnvironment() here because that depends on the * registry to be already initialized. */