Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1424,7 +1424,6 @@ |
1425 | 1425 | 'statistics-edits-average', |
1426 | 1426 | 'statistics-views-total', |
1427 | 1427 | 'statistics-views-peredit', |
1428 | | - 'statistics-jobqueue', |
1429 | 1428 | 'statistics-users', |
1430 | 1429 | 'statistics-users-active', |
1431 | 1430 | 'statistics-users-active-desc', |
Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -153,11 +153,9 @@ |
154 | 154 | array( 'class' => 'mw-statistics-edits' ) ) . |
155 | 155 | $this->formatRow( wfMsgExt( 'statistics-edits-average', array( 'parseinline' ) ), |
156 | 156 | $wgLang->formatNum( sprintf( '%.2f', $this->total ? $this->edits / $this->total : 0 ) ), |
157 | | - array( 'class' => 'mw-statistics-edits-average' ) ) . |
158 | | - $this->formatRow( wfMsgExt( 'statistics-jobqueue', array( 'parseinline' ) ), |
159 | | - $wgLang->formatNum( $this->numJobs ), |
160 | | - array( 'class' => 'mw-statistics-jobqueue' ) ); |
| 157 | + array( 'class' => 'mw-statistics-edits-average' ) ); |
161 | 158 | } |
| 159 | + |
162 | 160 | private function getUserStats() { |
163 | 161 | global $wgLang, $wgUser, $wgRCMaxAge; |
164 | 162 | $sk = $wgUser->getSkin(); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2321,7 +2321,6 @@ |
2322 | 2322 | 'statistics-edits-average' => 'Average edits per page', |
2323 | 2323 | 'statistics-views-total' => 'Views total', |
2324 | 2324 | 'statistics-views-peredit' => 'Views per edit', |
2325 | | -'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] length', |
2326 | 2325 | 'statistics-users' => 'Registered [[Special:ListUsers|users]]', |
2327 | 2326 | 'statistics-users-active' => 'Active users', |
2328 | 2327 | 'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}', |