ZF-11404: Zend_Application_Resource_Cachemanager example fail
Description
In http://framework.zend.com/manual/en/…
The exsample for Zend_Application_Resource_Cachemanager:
$manager = $this->getFrontController() ->getParam('bootstrap') ->getResource('cachemanager') ->getCacheManager(); $dbCache = $manager->getCache('database');
It should be:
$manager = $this->getFrontController() ->getParam('bootstrap') ->getResource('cachemanager'); $dbCache = $manager->getCache('database');
Comments
Posted by Dolf Schimmel (Freeaqingme) (freak) on 2011-06-04T00:21:06.000+0000
Assigning to the author of the class in question.
Posted by Ramon Henrique Ornelas (ramon) on 2011-07-30T04:39:17.000+0000
Fix r24313.