aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Profiling.php
diff options
context:
space:
mode:
authorTim Starling <tstarling@users.mediawiki.org>2004-03-23 12:06:10 +0000
committerTim Starling <tstarling@users.mediawiki.org>2004-03-23 12:06:10 +0000
commit7ef0896ad7a11d07a70ec09790e8a98f78382b5b (patch)
tree5e1b2536abb34122212a0d3817262efbb4e9b571 /includes/Profiling.php
parentb1a944009dd51eb8ee7c0bb573964551c0234ea1 (diff)
downloadmediawikicore-7ef0896ad7a11d07a70ec09790e8a98f78382b5b.tar.gz
mediawikicore-7ef0896ad7a11d07a70ec09790e8a98f78382b5b.zip
Fix notice
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2807
Diffstat (limited to 'includes/Profiling.php')
-rwxr-xr-xincludes/Profiling.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Profiling.php b/includes/Profiling.php
index 2a108a86a58d..392ca38f1247 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;