Index: trunk/extensions/FlaggedRevs/specialpages/UnreviewedPages_body.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | if( !is_null($size = $result->page_len) ) { |
64 | 64 | global $wgLang; |
65 | 65 | $stxt = ($size == 0) ? |
66 | | - wfMsgHtml('historyempty') : wfMsgHtml('historysize', $wgLang->formatNum( $size ) ); |
| 66 | + wfMsgHtml('historyempty') : wfMsgExt('historysize', array('parsemag'), $wgLang->formatNum( $size ) ); |
67 | 67 | $stxt = " <small>$stxt</small>"; |
68 | 68 | } |
69 | 69 | if( $wgUser->isAllowed('unwatchedpages') ) { |
Index: trunk/extensions/FlaggedRevs/specialpages/OldReviewedPages_body.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | $css = $stxt = $review = ''; |
60 | 60 | if( !is_null($size = $result->page_len) ) { |
61 | 61 | $stxt = ($size == 0) ? |
62 | | - wfMsgHtml('historyempty') : wfMsgHtml('historysize', $wgLang->formatNum( $size ) ); |
| 62 | + wfMsgHtml('historyempty') : wfMsgExt('historysize', array('parsemag'), $wgLang->formatNum( $size ) ); |
63 | 63 | $stxt = " <small>$stxt</small>"; |
64 | 64 | } |
65 | 65 | $review = $this->skin->makeKnownLinkObj( $title, wfMsg('oldreviewed-diff'), |
Index: trunk/extensions/FlaggedRevs/specialpages/ReviewedPages_body.php |
— | — | @@ -68,7 +68,7 @@ |
69 | 69 | if($size == 0) |
70 | 70 | $stxt = ' <small>' . wfMsgHtml('historyempty') . '</small>'; |
71 | 71 | else |
72 | | - $stxt = ' <small>' . wfMsgHtml('historysize', $wgLang->formatNum( $size ) ) . '</small>'; |
| 72 | + $stxt = ' <small>' . wfMsgExt('historysize', array('parsemag'), $wgLang->formatNum( $size ) ) . '</small>'; |
73 | 73 | } |
74 | 74 | |
75 | 75 | $SVtitle = SpecialPage::getTitleFor( 'Stableversions' ); |