|
|||
|
I am trying to forward from one controllers action to another controllers action.
When I call forward from within an action I receive an error that says it cant find the action, but if I call forward from within predispatch, all is well. Am I missing something somewhere? Code:
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$this->_forward('otherAction', 'differentController');
}
}
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|