Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Not an Issue
-
Affects Version/s: 1.9.6
-
Fix Version/s: 1.10.1
-
Component/s: Zend_Application_Resource
-
Labels:None
Description
Zend_Application_Resource_View directly instantiates Zend_Controller_Action_Helper_ViewRenderer rather than using the helper broker so the options passed in through Zend_Application aren't actually kept. To fix this, it should be as simple as changing:
Zend/Application/Resource/View.php
$viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer();
to:
$viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
Never mind.