From: Michael M Slusarz Date: Mon, 20 Dec 2010 17:19:17 +0000 (-0700) Subject: Bug #9424: Need to unset apis variable - or else it won't be rebuilt X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7fd5d34ce9e01a6ccc027131894b18b3c0a813aa;p=horde.git Bug #9424: Need to unset apis variable - or else it won't be rebuilt --- diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 94c2472a0..d18f4b660 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -481,7 +481,8 @@ class Horde_Registry { $app = $this->getApp(); - $this->applications = $this->_apiList = $this->_apis = $this->_confCache = $this->_interfaces = array(); + $this->applications = $this->_apiList = $this->_confCache = $this->_interfaces = array(); + unset($this->_apis); $GLOBALS['session']->remove('horde', 'registry/'); $this->_saveCache('apis');