From e58161e85e6563b37a8cded1207db835ec3fa909 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 14 Aug 2005 13:22:50 +0000 Subject: [PATCH] fix warnings --- includes/Profiling.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Profiling.php b/includes/Profiling.php index 770f39fedd..1fb1ae0e04 100755 --- a/includes/Profiling.php +++ b/includes/Profiling.php @@ -80,12 +80,12 @@ class Profiler { if ($functionname == 'close') { $message = "Profile section ended by close(): {$bit[0]}\n"; wfDebug( $message ); - $this->mStack[] = array( $message, 0, 0, 0 ); + $this->mStack[] = array( $message, 0, '0 0', 0, '0 0', 0 ); } elseif ($bit[0] != $functionname) { $message = "Profiling error: in({$bit[0]}), out($functionname)\n"; wfDebug( $message ); - $this->mStack[] = array( $message, 0, 0, 0 ); + $this->mStack[] = array( $message, 0, '0 0', 0, '0 0', 0 ); } //} $bit[] = $time; -- 2.20.1