From 7ef0896ad7a11d07a70ec09790e8a98f78382b5b Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 23 Mar 2004 12:06:10 +0000 Subject: [PATCH] Fix notice --- includes/Profiling.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Profiling.php b/includes/Profiling.php index 2a108a86a5..392ca38f12 100755 --- a/includes/Profiling.php +++ b/includes/Profiling.php @@ -118,7 +118,7 @@ class Profiler $this->mCalls[$fname] ++; } - $total = $this->mCollated["-total"]; + $total = @$this->mCollated["-total"]; $overhead = $this->mCollated["-overhead-internal"] / $profileCount; $this->mCalls["-overhead-total"] = $profileCount; -- 2.20.1