Fix Undefined index: HTTP_USER_AGENT in App

Esse commit está contido em:
Hypolite Petovan 2018-07-02 22:19:21 -04:00
commit 58e1470ddb
1 arquivos alterados com 1 adições e 1 exclusões

Ver arquivo

@ -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');