X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=0a2f5c50cdff406c0d3d585e3ca8683639c00afd;hb=118d4280135755d6054295ea89467975be9cae07;hp=d82669f231a9fb12608d3855ea50ea78e7bb6ee2;hpb=507f8ab4dfb1a31c97160f6f4ed1315f548d2642;p=friendica.git diff --git a/boot.php b/boot.php index d82669f231..0a2f5c50cd 100644 --- a/boot.php +++ b/boot.php @@ -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; @@ -1046,11 +1047,21 @@ class App { function save_timestamp($stamp, $value) { $duration = (float)(microtime(true)-$stamp); + if (!isset($this->performance[$value])) { + // Prevent ugly E_NOTICE + $this->performance[$value] = 0; + } + $this->performance[$value] += (float)$duration; $this->performance["marktime"] += (float)$duration; $callstack = $this->callstack(); + if (!isset($this->callstack[$value][$callstack])) { + // Prevent ugly E_NOTICE + $this->callstack[$value][$callstack] = 0; + } + $this->callstack[$value][$callstack] += (float)$duration; }