r91503 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r91502‎ | r91503 | r91504 >
Date:22:47, 5 July 2011
Author:aaron
Status:ok
Tags:
Comment:
Division by zero
Modified paths:
  • /trunk/phase3/includes/profiler/ProfilerSimpleText.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/profiler/ProfilerSimpleText.php
@@ -45,7 +45,8 @@
4646 }
4747
4848 static function format( $item, $key, $totalReal ) {
 49+ $perc = $totalReal ? $item['real']/$totalReal*100 : 0;
4950 self::$out .= sprintf( "%6.2f%% %3.6f %6d - %s\n",
50 - $item['real']/$totalReal*100, $item['real'], $item['count'], $key );
 51+ $perc, $item['real'], $item['count'], $key );
5152 }
5253 }

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r91441Added percentages to ProfilerSimpleTextaaron06:39, 5 July 2011

Status & tagging log