Index: trunk/phase3/includes/SpecialStatistics.php |
— | — | @@ -24,6 +24,10 @@ |
25 | 25 | |
26 | 26 | $admins = $dbr->selectField( 'user_groups', 'COUNT(*)', array( 'ug_group' => 'sysop' ), $fname ); |
27 | 27 | $numJobs = $dbr->estimateRowCount('job'); |
| 28 | + /* Zero rows still do single row read for row that doesn't exist, but people are annoyed by that */ |
| 29 | + if ($numJobs == 1) { |
| 30 | + $numJobs = 0; |
| 31 | + } |
28 | 32 | |
29 | 33 | if ($action == 'raw') { |
30 | 34 | $wgOut->disable(); |