]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Prevent some E_NOTICE in identity.php
[friendica.git] / boot.php
index 4b2e83f18a5eff74d1913b3186c43e26976fb820..0a2f5c50cdff406c0d3d585e3ca8683639c00afd 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1047,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;
 
        }