From 2f0225da66e85b1d65782f2effd19aba115b4498 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 27 Jan 2014 12:32:50 -0700 Subject: [PATCH] Have to explicit request no lifetime when retrieving cache --- 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 fef2f5d0b41..74dc983dec6 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -680,7 +680,7 @@ protected function _loadApplications() $pack = $injector->getInstance('Horde_Pack'); if (($cid = $this->_cacheId()) && - ($cdata = $cache->get($cid))) { + ($cdata = $cache->get($cid, 0))) { try { $cdata = $pack->unpack($cdata); $this->applications = $cdata[0];