From: Chad Horohoe Date: Fri, 28 Oct 2011 03:01:57 +0000 (+0000) Subject: Rm unused parameter X-Git-Tag: 1.31.0-rc.0~26856 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=d2cf872d893b1f10eaaa30485bbf247f1b8d49c5;p=lhc%2Fweb%2Fwiklou.git Rm unused parameter --- diff --git a/includes/profiler/ProfilerSimpleTrace.php b/includes/profiler/ProfilerSimpleTrace.php index ba41babcab..b53bc485b0 100644 --- a/includes/profiler/ProfilerSimpleTrace.php +++ b/includes/profiler/ProfilerSimpleTrace.php @@ -36,7 +36,7 @@ class ProfilerSimpleTrace extends ProfilerSimple { $this->debug(str_repeat(' ', count($this->mWorkStack) - 1).'Exiting '.$functionname."\n"); } - list( $ofname, /* $ocount */ , $ortime, $octime ) = array_pop( $this->mWorkStack ); + list( $ofname, /* $ocount */ , $ortime ) = array_pop( $this->mWorkStack ); if ( !$ofname ) { $this->trace .= "Profiling error: $functionname\n";