From fb4357b18ed704aa9a4794569934ecbb0ec43a46 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Wed, 28 Jan 2009 19:58:41 +0000 Subject: [PATCH] * Fix visible regression and let the plural finally work properly * Reported by saper at mediawiki-i18n --- includes/CategoryPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) ) ); -- 2.20.1