From b0709d8cba5a39faed65ee5552e8742ddfd1d315 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 25 Mar 2014 08:52:48 +0100 Subject: [PATCH] Revert postDispatch -> preDispatch change in ActionController refs #4190 --- library/Icinga/Web/Controller/ActionController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Web/Controller/ActionController.php b/library/Icinga/Web/Controller/ActionController.php index 7794d2ad1..7429d89c8 100644 --- a/library/Icinga/Web/Controller/ActionController.php +++ b/library/Icinga/Web/Controller/ActionController.php @@ -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()');