ModuleActionController: fix forward/X-Icinga-Module

This commit is contained in:
Thomas Gelf 2015-07-22 10:53:42 +02:00
parent 45ef285e3d
commit bf82bd4ce1
1 changed files with 1 additions and 1 deletions

View File

@ -73,6 +73,6 @@ class ModuleActionController extends ActionController
public function postDispatchXhr()
{
parent::postDispatchXhr();
$this->getResponse()->setHeader('X-Icinga-Module', $this->moduleName);
$this->getResponse()->setHeader('X-Icinga-Module', $this->moduleName, true);
}
}