From 549950d0ae33979152487fd13c7bfb29f3a7daa5 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 26 Oct 2016 07:42:40 -0400 Subject: [PATCH] Fix $a to #this in save_timestamp --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);