Revert postDispatch -> preDispatch change in ActionController

refs #4190
This commit is contained in:
Johannes Meyer 2014-03-25 08:52:48 +01:00
parent 5d86eab8c4
commit b0709d8cba
1 changed files with 2 additions and 2 deletions

View File

@ -335,9 +335,9 @@ class ActionController extends Zend_Controller_Action
/**
* Detect whether the current request requires changes in the layout and apply them before rendering
*
* @see Zend_Controller_Action::preDispatch()
* @see Zend_Controller_Action::postDispatch()
*/
public function preDispatch()
public function postDispatch()
{
Benchmark::measure('Action::postDispatch()');