Index: trunk/phase3/maintenance/importDump.php |
— | — | @@ -69,8 +69,8 @@ |
70 | 70 | if( $this->reporting ) { |
71 | 71 | $delta = wfTime() - $this->startTime; |
72 | 72 | if( $delta ) { |
73 | | - $rate = $this->pageCount / $delta; |
74 | | - $revrate = $this->revCount / $delta; |
| 73 | + $rate = sprintf("%.2f", $this->pageCount / $delta); |
| 74 | + $revrate = sprintf("%.2f", $this->revCount / $delta); |
75 | 75 | } else { |
76 | 76 | $rate = '-'; |
77 | 77 | $revrate = '-'; |