Index: trunk/phase3/includes/specials/SpecialMovepage.php |
— | — | @@ -515,7 +515,7 @@ |
516 | 516 | return; |
517 | 517 | } |
518 | 518 | |
519 | | - $out->addWikiMsg( 'movesubpagetext', $wgLang->formatnum( $count ) ); |
| 519 | + $out->addWikiMsg( 'movesubpagetext', $wgLang->formatNum( $count ) ); |
520 | 520 | $skin = $wgUser->getSkin(); |
521 | 521 | $out->addHTML( "<ul>\n" ); |
522 | 522 | |
Index: trunk/extensions/CommunityVoice/Modules/Ratings.php |
— | — | @@ -177,7 +177,7 @@ |
178 | 178 | 'cv_ratings_scale_' . $args['category'] . '_' . $args['title'] |
179 | 179 | ); |
180 | 180 | // Gets stats message |
181 | | - $stats = wfMsgExt( 'communityvoice-ratings-scale-stats', array( 'parsemag' ), $wgLang->formatnum( round( $rating, 1 ) ), $wgLang->formatnum( $totalVotes ) ); |
| 181 | + $stats = wfMsgExt( 'communityvoice-ratings-scale-stats', array( 'parsemag' ), $wgLang->formatNum( round( $rating, 1 ) ), $wgLang->formatnum( $totalVotes ) ); |
182 | 182 | |
183 | 183 | // Begins rating scale |
184 | 184 | $htmlOut = Html::open( |