Actually process plural for 'tags-hitcount'
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Wed, 3 Jun 2009 22:10:44 +0000 (22:10 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Wed, 3 Jun 2009 22:10:44 +0000 (22:10 +0000)
includes/specials/SpecialTags.php

index 981eb2f..00e7d24 100644 (file)
@@ -62,7 +62,7 @@ class SpecialTags extends SpecialPage {
                $desc .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag-description" ), wfMsg( 'tags-edit' ) ) . ')';
                $newRow .= Xml::tags( 'td', null, $desc );
 
-               $hitcount = wfMsg( 'tags-hitcount', $hitcount );
+               $hitcount = wfMsgExt( 'tags-hitcount', array( 'parsemag' ), $hitcount );
                $hitcount = $sk->link( SpecialPage::getTitleFor( 'RecentChanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) );
                $newRow .= Xml::tags( 'td', null, $hitcount );