From: Hypolite Petovan Date: Wed, 26 Oct 2016 11:42:40 +0000 (-0400) Subject: Fix $a to #this in save_timestamp X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=549950d0ae33979152487fd13c7bfb29f3a7daa5;p=friendica.git Fix $a to #this in save_timestamp --- diff --git a/boot.php b/boot.php index 0c25dfef3d..e49ffbd221 100644 --- a/boot.php +++ b/boot.php @@ -1100,7 +1100,7 @@ class App { } function save_timestamp($stamp, $value) { - if (!isset($a->config['system']['profiler']) || !$a->config['system']['profiler']) + if (!isset($this->config['system']['profiler']) || !$this->config['system']['profiler']) return; $duration = (float)(microtime(true)-$stamp);