From: Siebrand Mazeland Date: Wed, 3 Jun 2009 22:10:44 +0000 (+0000) Subject: Actually process plural for 'tags-hitcount' X-Git-Tag: 1.31.0-rc.0~41518 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=ee58a8998c817497e63d07a073dcda4e877c2203;p=lhc%2Fweb%2Fwiklou.git Actually process plural for 'tags-hitcount' --- diff --git a/includes/specials/SpecialTags.php b/includes/specials/SpecialTags.php index 981eb2ffc9..00e7d2465e 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -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 );