Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
8beee54526
@ -56,7 +56,7 @@ class Console
|
||||
*/
|
||||
public function setAjax($isAjax)
|
||||
{
|
||||
$this->_isAjax = !!$isAjax;
|
||||
$this->_isAjax = (boolean) $isAjax;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -271,7 +271,7 @@ class Footer
|
||||
*/
|
||||
public function setAjax($isAjax)
|
||||
{
|
||||
$this->_isAjax = !!$isAjax;
|
||||
$this->_isAjax = (boolean) $isAjax;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -298,7 +298,7 @@ class Header
|
||||
*/
|
||||
public function setAjax($isAjax)
|
||||
{
|
||||
$this->_isAjax = !!$isAjax;
|
||||
$this->_isAjax = (boolean) $isAjax;
|
||||
$this->_console->setAjax($isAjax);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user