Skip to content

Commit

Permalink
Have to explicit request no lifetime when retrieving cache
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jan 27, 2014
1 parent d4b7637 commit 2f0225d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Registry.php
Expand Up @@ -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];
Expand Down

0 comments on commit 2f0225d

Please sign in to comment.