isAjax bugfix
This commit is contained in:
parent
059bd1307f
commit
4f7cb049fb
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ class App
|
||||||
$this->is_mobile = $mobile_detect->isMobile();
|
$this->is_mobile = $mobile_detect->isMobile();
|
||||||
$this->is_tablet = $mobile_detect->isTablet();
|
$this->is_tablet = $mobile_detect->isTablet();
|
||||||
|
|
||||||
$this->isAjax = strtolower(defaults($_SERVER, 'HTTP_X_REQUESTED_WITH')) == 'xmlhttprequest';
|
$this->isAjax = strtolower(defaults($_SERVER, 'HTTP_X_REQUESTED_WITH', '')) == 'xmlhttprequest';
|
||||||
|
|
||||||
// Register template engines
|
// Register template engines
|
||||||
$this->registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
|
$this->registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
|
||||||
|
|
Loading…
Reference in a new issue