Index: trunk/extensions/FlaggedRevs/specialpages/ProblemChanges_body.php |
— | — | @@ -214,11 +214,11 @@ |
215 | 215 | // After three days, just use days |
216 | 216 | if ( $hours > ( 3 * 24 ) ) { |
217 | 217 | $days = round( $hours / 24, 0 ); |
218 | | - $age = wfMsgExt( 'pendingchanges-days', array( 'parsemag' ), $wgLang->formatNum( $days ) ); |
| 218 | + $age = wfMsgExt( 'pendingchanges-days', 'parsemag', $wgLang->formatNum( $days ) ); |
219 | 219 | // If one or more hours, use hours |
220 | 220 | } elseif ( $hours >= 1 ) { |
221 | 221 | $hours = round( $hours, 0 ); |
222 | | - $age = wfMsgExt( 'pendingchanges-hours', array( 'parsemag' ), $wgLang->formatNum( $hours ) ); |
| 222 | + $age = wfMsgExt( 'pendingchanges-hours', 'parsemag', $wgLang->formatNum( $hours ) ); |
223 | 223 | } else { |
224 | 224 | $age = wfMsg( 'pendingchanges-recent' ); // hot off the press :) |
225 | 225 | } |
Index: trunk/extensions/FlaggedRevs/specialpages/ReviewedPages_body.php |
— | — | @@ -92,7 +92,7 @@ |
93 | 93 | if ( $size == 0 ) |
94 | 94 | $stxt = ' <small>' . wfMsgHtml( 'historyempty' ) . '</small>'; |
95 | 95 | else |
96 | | - $stxt = ' <small>' . wfMsgExt( 'historysize', array( 'parsemag' ), |
| 96 | + $stxt = ' <small>' . wfMsgExt( 'historysize', 'parsemag', |
97 | 97 | $wgLang->formatNum( $size ) ) . '</small>'; |
98 | 98 | } |
99 | 99 | |