Fix case for "Recentchanges" (and not "RecentChanges") so that SpecialPage::getLocalN...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 4 Jun 2009 19:23:13 +0000 (19:23 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 4 Jun 2009 19:23:13 +0000 (19:23 +0000)
includes/specials/SpecialTags.php

index 00e7d24..e4d1970 100644 (file)
@@ -63,7 +63,7 @@ class SpecialTags extends SpecialPage {
                $newRow .= Xml::tags( 'td', null, $desc );
 
                $hitcount = wfMsgExt( 'tags-hitcount', array( 'parsemag' ), $hitcount );
-               $hitcount = $sk->link( SpecialPage::getTitleFor( 'RecentChanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) );
+               $hitcount = $sk->link( SpecialPage::getTitleFor( 'Recentchanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) );
                $newRow .= Xml::tags( 'td', null, $hitcount );
 
                $doneTags[] = $tag;