Place the code below in your bootstrap and it should work the way you want it to.
This would affect all of your controllers tho. Maybe that is not what you are after.
$viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer();
$viewRenderer->setViewScriptPathSpec(':action.:suffix');
Zend_Controller_Action_HelperBroker::addHelper($vi ewRenderer);
|