Fix rawurlencode call

This commit is contained in:
Eric Lippmann 2015-07-22 13:36:25 +02:00
parent b8c2c33086
commit 13d954a956
1 changed files with 2 additions and 1 deletions

View File

@ -472,7 +472,8 @@ class ActionController extends Zend_Controller_Action
}
$resp->setHeader(
'X-Icinga-Title',
rawurlencode($this->view->title . ' :: Icinga Web', true)
rawurlencode($this->view->title . ' :: Icinga Web'),
true
);
} else {
$resp->setHeader('X-Icinga-Title', rawurlencode('Icinga Web'), true);