r46477 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r46476‎ | r46477 | r46478 >
Date:19:58, 28 January 2009
Author:nikerabbit
Status:ok
Tags:
Comment:
* Fix visible regression and let the plural finally work properly
* Reported by saper at mediawiki-i18n
Modified paths:
  • /trunk/phase3/includes/CategoryPage.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/CategoryPage.php
@@ -449,12 +449,12 @@
450450 $sk = $this->getSkin();
451451 $limitText = $wgLang->formatNum( $limit );
452452
453 - $prevLink = wfMsgExt( 'prevn', array( 'escape' ), $limitText );
 453+ $prevLink = wfMsgExt( 'prevn', array( 'escape', 'parsemag' ), $limitText );
454454 if( $first != '' ) {
455455 $prevLink = $sk->makeLinkObj( $title, $prevLink,
456456 wfArrayToCGI( $query + array( 'until' => $first ) ) );
457457 }
458 - $nextLink = wfMsgExt( 'nextn', array( 'escape' ), $limitText );
 458+ $nextLink = wfMsgExt( 'nextn', array( 'escape', 'parsemag' ), $limitText );
459459 if( $last != '' ) {
460460 $nextLink = $sk->makeLinkObj( $title, $nextLink,
461461 wfArrayToCGI( $query + array( 'from' => $last ) ) );

Status & tagging log