From 7222ac00bd23744cdf91c922b9e14362bf170190 Mon Sep 17 00:00:00 2001 From: Domas Mituzas Date: Tue, 25 Mar 2008 17:23:46 +0000 Subject: [PATCH] some manuals need strangling. --- includes/ProfilerSimpleText.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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); }	
 }
 ?>
-- 
2.20.1