r37391 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r37390‎ | r37391 | r37392 >
Date:14:57, 9 July 2008
Author:aaron
Status:old
Tags:
Comment:
Can people at least grep and update message calls?
Modified paths:
  • /trunk/extensions/FlaggedRevs/specialpages/OldReviewedPages_body.php (modified) (history)
  • /trunk/extensions/FlaggedRevs/specialpages/ReviewedPages_body.php (modified) (history)
  • /trunk/extensions/FlaggedRevs/specialpages/UnreviewedPages_body.php (modified) (history)

Diff [purge]

Index: trunk/extensions/FlaggedRevs/specialpages/UnreviewedPages_body.php
@@ -62,7 +62,7 @@
6363 if( !is_null($size = $result->page_len) ) {
6464 global $wgLang;
6565 $stxt = ($size == 0) ?
66 - wfMsgHtml('historyempty') : wfMsgHtml('historysize', $wgLang->formatNum( $size ) );
 66+ wfMsgHtml('historyempty') : wfMsgExt('historysize', array('parsemag'), $wgLang->formatNum( $size ) );
6767 $stxt = " <small>$stxt</small>";
6868 }
6969 if( $wgUser->isAllowed('unwatchedpages') ) {
Index: trunk/extensions/FlaggedRevs/specialpages/OldReviewedPages_body.php
@@ -58,7 +58,7 @@
5959 $css = $stxt = $review = '';
6060 if( !is_null($size = $result->page_len) ) {
6161 $stxt = ($size == 0) ?
62 - wfMsgHtml('historyempty') : wfMsgHtml('historysize', $wgLang->formatNum( $size ) );
 62+ wfMsgHtml('historyempty') : wfMsgExt('historysize', array('parsemag'), $wgLang->formatNum( $size ) );
6363 $stxt = " <small>$stxt</small>";
6464 }
6565 $review = $this->skin->makeKnownLinkObj( $title, wfMsg('oldreviewed-diff'),
Index: trunk/extensions/FlaggedRevs/specialpages/ReviewedPages_body.php
@@ -68,7 +68,7 @@
6969 if($size == 0)
7070 $stxt = ' <small>' . wfMsgHtml('historyempty') . '</small>';
7171 else
72 - $stxt = ' <small>' . wfMsgHtml('historysize', $wgLang->formatNum( $size ) ) . '</small>';
 72+ $stxt = ' <small>' . wfMsgExt('historysize', array('parsemag'), $wgLang->formatNum( $size ) ) . '</small>';
7373 }
7474
7575 $SVtitle = SpecialPage::getTitleFor( 'Stableversions' );

Status & tagging log