From: Tim Starling Date: Sun, 14 Aug 2005 13:22:50 +0000 (+0000) Subject: fix warnings X-Git-Tag: 1.6.0~1981 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=e58161e85e6563b37a8cded1207db835ec3fa909;p=lhc%2Fweb%2Fwiklou.git fix warnings --- 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;