From: Domas Mituzas Date: Tue, 25 Mar 2008 17:23:46 +0000 (+0000) Subject: some manuals need strangling. X-Git-Tag: 1.31.0-rc.0~48820 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=7222ac00bd23744cdf91c922b9e14362bf170190;p=lhc%2Fweb%2Fwiklou.git some manuals need strangling. --- diff --git a/includes/ProfilerSimpleText.php b/includes/ProfilerSimpleText.php index 7191c3fa58..d206feeae3 100644 --- a/includes/ProfilerSimpleText.php +++ b/includes/ProfilerSimpleText.php @@ -14,16 +14,13 @@ class ProfilerSimpleText extends ProfilerSimple { function getFunctionReport() { if ($this->visible) print "
";
 			else print "\n";
 	}
 	/* dense is good */
 	function sort($a,$b) { return $a['real']<$b['real']; /* sort descending by time elapsed */ }
-	function tag(&$item,$key) { $item['function']=$key; }
-	function format($item,$key) { printf("%3.6f %6d - %s\n",$item['real'],$item['count'], $item['function']); }	
+	function format($item,$key) { printf("%3.6f %6d - %s\n",$item['real'],$item['count'], $key); }	
 }
 ?>