Index: trunk/phase3/includes/specials/SpecialTags.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | $desc .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag-description" ), wfMsg( 'tags-edit' ) ) . ')'; |
64 | 64 | $newRow .= Xml::tags( 'td', null, $desc ); |
65 | 65 | |
66 | | - $hitcount = wfMsg( 'tags-hitcount', $hitcount ); |
| 66 | + $hitcount = wfMsgExt( 'tags-hitcount', array( 'parsemag' ), $hitcount ); |
67 | 67 | $hitcount = $sk->link( SpecialPage::getTitleFor( 'RecentChanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) ); |
68 | 68 | $newRow .= Xml::tags( 'td', null, $hitcount ); |
69 | 69 | |