From: Aaron Schulz Date: Mon, 7 Dec 2009 16:50:36 +0000 (+0000) Subject: stop undefined variable notices X-Git-Tag: 1.31.0-rc.0~38609 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=1d05356f120a143118ca49ba01c4fd1c9e71426a;p=lhc%2Fweb%2Fwiklou.git stop undefined variable notices --- diff --git a/includes/Profiler.php b/includes/Profiler.php index 4046a58683..9bd9e9a5e1 100644 --- a/includes/Profiler.php +++ b/includes/Profiler.php @@ -259,6 +259,7 @@ class Profiler { wfProfileOut( '-overhead-total' ); # First, subtract the overhead! + $overheadTotal = $overheadMemory = $overheadInternal = array(); foreach( $this->mStack as $entry ){ $fname = $entry[0]; $start = $entry[2];