From: Niklas Laxström Date: Wed, 28 Jan 2009 19:58:41 +0000 (+0000) Subject: * Fix visible regression and let the plural finally work properly X-Git-Tag: 1.31.0-rc.0~43163 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=fb4357b18ed704aa9a4794569934ecbb0ec43a46;p=lhc%2Fweb%2Fwiklou.git * Fix visible regression and let the plural finally work properly * Reported by saper at mediawiki-i18n --- diff --git a/includes/CategoryPage.php b/includes/CategoryPage.php index a5bdc05dcb..71b8c4bf72 100644 --- a/includes/CategoryPage.php +++ b/includes/CategoryPage.php @@ -449,12 +449,12 @@ class CategoryViewer { $sk = $this->getSkin(); $limitText = $wgLang->formatNum( $limit ); - $prevLink = wfMsgExt( 'prevn', array( 'escape' ), $limitText ); + $prevLink = wfMsgExt( 'prevn', array( 'escape', 'parsemag' ), $limitText ); if( $first != '' ) { $prevLink = $sk->makeLinkObj( $title, $prevLink, wfArrayToCGI( $query + array( 'until' => $first ) ) ); } - $nextLink = wfMsgExt( 'nextn', array( 'escape' ), $limitText ); + $nextLink = wfMsgExt( 'nextn', array( 'escape', 'parsemag' ), $limitText ); if( $last != '' ) { $nextLink = $sk->makeLinkObj( $title, $nextLink, wfArrayToCGI( $query + array( 'from' => $last ) ) );