summaryrefslogtreecommitdiff
path: root/includes/SpecialCategories.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialCategories.php')
-rw-r--r--includes/SpecialCategories.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/SpecialCategories.php b/includes/SpecialCategories.php
index 596569ed..efe65a78 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()
. '<ul>' . $cap->getBody() . '</ul>' .
$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";
}