From 2e375dd57cd298388b31844007ddb5b4594c0d19 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 22 Jun 2015 13:56:41 +0200 Subject: [PATCH] Do not bypass the view renderer when rendering benchmarks fixes #9402 --- library/Icinga/Web/Controller/ActionController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/Controller/ActionController.php b/library/Icinga/Web/Controller/ActionController.php index d7156becc..571f0792f 100644 --- a/library/Icinga/Web/Controller/ActionController.php +++ b/library/Icinga/Web/Controller/ActionController.php @@ -505,7 +505,7 @@ class ActionController extends Zend_Controller_Action */ protected function renderBenchmark() { - $this->render(); + $this->_helper->viewRenderer->postDispatch(); Benchmark::measure('Response ready'); return Benchmark::renderToHtml(); }