Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -106,6 +106,8 @@ |
107 | 107 | } |
108 | 108 | |
109 | 109 | function formatRow( $row ) { |
| 110 | + global $wgLang; |
| 111 | + |
110 | 112 | $userPage = Title::makeTitle( NS_USER, $row->user_name ); |
111 | 113 | $name = $this->getSkin()->makeLinkObj( $userPage, htmlspecialchars( $userPage->getText() ) ); |
112 | 114 | |
— | — | @@ -121,7 +123,8 @@ |
122 | 124 | } |
123 | 125 | |
124 | 126 | $item = wfSpecialList( $name, $groups ); |
125 | | - $edits = wfMsgExt('usereditcount',array('parsemag'),$row->edits); |
| 127 | + $editCount = $wgLang->formatNum( $row->edits ); |
| 128 | + $edits = wfMsgExt( 'usereditcount', 'parsemag', $editCount ); |
126 | 129 | wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) ); |
127 | 130 | return "<li>{$item} [$edits]</li>"; |
128 | 131 | } |