No need to set $a->theme_info = array() everywhere if you can define it in App

itself.

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Haeder
2016-03-01 14:27:38 +01:00
parent 066ddada17
commit f7a0260129
9 changed files with 3 additions and 12 deletions

View File

@@ -465,11 +465,12 @@ class App {
public $plugins;
public $apps = array();
public $identities;
public $is_mobile;
public $is_tablet;
public $is_mobile = false;
public $is_tablet = false;
public $is_friendica_app;
public $performance = array();
public $callstack = array();
public $theme_info = array();
public $nav_sel;