Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2016-01-18 23:56:13 +01:00
commit 8beee54526
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ class Console
*/
public function setAjax($isAjax)
{
$this->_isAjax = !!$isAjax;
$this->_isAjax = (boolean) $isAjax;
}
/**

View File

@ -271,7 +271,7 @@ class Footer
*/
public function setAjax($isAjax)
{
$this->_isAjax = !!$isAjax;
$this->_isAjax = (boolean) $isAjax;
}
/**

View File

@ -298,7 +298,7 @@ class Header
*/
public function setAjax($isAjax)
{
$this->_isAjax = !!$isAjax;
$this->_isAjax = (boolean) $isAjax;
$this->_console->setAjax($isAjax);
}