Index: trunk/extensions/SocialProfile/UserStats/GenerateTopUsersReport.php |
— | — | @@ -208,14 +208,14 @@ |
209 | 209 | ) . "\n\n"; |
210 | 210 | $pageContent .= "=={$winners}==\n\n<br />\n"; |
211 | 211 | |
212 | | - $pageContent .= '==' . wfMsgForContent( 'user-stats-full-top', $user_count ) . "==\n\n"; |
| 212 | + $pageContent .= '==' . wfMsgForContent( 'user-stats-full-top', $wgContLang->formatNum( $user_count ) ) . "==\n\n"; |
213 | 213 | |
214 | 214 | foreach( $users as $user ) { |
215 | 215 | $userTitle = Title::makeTitle( NS_USER, $user['user_name'] ); |
216 | 216 | $pageContent .= wfMsgExt( |
217 | 217 | 'user-stats-report-row', |
218 | 218 | array( 'content', 'parsemag' ), |
219 | | - $user['rank'], |
| 219 | + $wgContLang->formatNum( $user['rank'] ), |
220 | 220 | $user['user_name'], |
221 | 221 | $wgContLang->formatNum( $user['points'] ) |
222 | 222 | ) . "\n\n"; |
— | — | @@ -285,4 +285,4 @@ |
286 | 286 | $out .= '</div>'; // .top-users |
287 | 287 | $wgOut->addHTML( $out ); |
288 | 288 | } |
289 | | -} |
\ No newline at end of file |
| 289 | +} |