Fix Undefined index: HTTP_USER_AGENT in App

This commit is contained in:
Hypolite Petovan 2018-07-02 22:19:21 -04:00
parent 39b61da05d
commit 58e1470ddb
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ class App
$this->is_tablet = $mobile_detect->isTablet();
// Friendica-Client
$this->is_friendica_app = ($_SERVER['HTTP_USER_AGENT'] == 'Apache-HttpClient/UNAVAILABLE (java 1.4)');
$this->is_friendica_app = isset($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT'] == 'Apache-HttpClient/UNAVAILABLE (java 1.4)';
// Register template engines
$this->register_template_engine('Friendica\Render\FriendicaSmartyEngine');