From 3edda43bca204af2cebffefb8d69d9ff9777a559 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 12 Jul 2019 10:16:46 +0200 Subject: [PATCH] ActionController: Utilize view variable `$defaultTitle` instead of the constant Allows controllers to also customize the default title with translated contents. refs #3851 --- 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 680205902..7a8aa0e7e 100644 --- a/library/Icinga/Web/Controller/ActionController.php +++ b/library/Icinga/Web/Controller/ActionController.php @@ -511,11 +511,11 @@ class ActionController extends Zend_Controller_Action } $resp->setHeader( 'X-Icinga-Title', - rawurlencode($this->view->title . ' :: ' . static::DEFAULT_TITLE), + rawurlencode($this->view->title . ' :: ' . $this->view->defaultTitle), true ); } else { - $resp->setHeader('X-Icinga-Title', rawurlencode(static::DEFAULT_TITLE), true); + $resp->setHeader('X-Icinga-Title', rawurlencode($this->view->defaultTitle), true); } $layout = $this->_helper->layout();