X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FSpecialCategories.php;h=efe65a78cce3f024dbc031c12f706ae2e82e99d0;hb=07a2fee8a82017d34f2c5120ce2f3863053003d9;hp=596569ed171582ff07f2acc71897301d1eecd2c5;hpb=a15c419b3d130248f2556b9d00643ba9666a4189;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SpecialCategories.php b/includes/SpecialCategories.php index 596569ed17..efe65a78cc 100644 --- a/includes/SpecialCategories.php +++ b/includes/SpecialCategories.php @@ -9,7 +9,7 @@ function wfSpecialCategories() { $cap = new CategoryPager(); $wgOut->addHTML( - wfMsgWikiHtml( 'categoriespagetext' ) . + wfMsgExt( 'categoriespagetext', array( 'parse' ) ) . $cap->getNavigationBar() . '' . $cap->getNavigationBar() @@ -54,7 +54,7 @@ class CategoryPager extends AlphabeticPager { global $wgLang; $title = Title::makeTitle( NS_CATEGORY, $result->cl_to ); $titleText = $this->getSkin()->makeLinkObj( $title, htmlspecialchars( $title->getText() ) ); - $count = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'), + $count = wfMsgExt( 'nmembers', array( 'parsemag', 'escape' ), $wgLang->formatNum( $result->count ) ); return Xml::tags('li', null, "$titleText ($count)" ) . "\n"; }