ModuleActionController: use isXhr()

This commit is contained in:
Thomas Gelf 2014-06-22 16:04:55 +02:00
parent 3774eb6889
commit bb23d0636c
1 changed files with 1 additions and 2 deletions

View File

@ -49,9 +49,8 @@ class ModuleActionController extends ActionController
$resp = $this->getResponse();
$layout = $this->_helper->layout();
$isXhr = $req->isXmlHttpRequest();
$layout->moduleName = $this->moduleName;
if ($isXhr) {
if ($this->isXhr()) {
$resp->setHeader('X-Icinga-Module', $layout->moduleName);
}