From: Alexandre Emsenhuber Date: Thu, 4 Jun 2009 19:23:13 +0000 (+0000) Subject: Fix case for "Recentchanges" (and not "RecentChanges") so that SpecialPage::getLocalN... X-Git-Tag: 1.31.0-rc.0~41499 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=99d49967ddc63f008b93869b7f7f25e28222d232;p=lhc%2Fweb%2Fwiklou.git Fix case for "Recentchanges" (and not "RecentChanges") so that SpecialPage::getLocalNameFor() doesn't emit an error --- diff --git a/includes/specials/SpecialTags.php b/includes/specials/SpecialTags.php index 00e7d2465e..e4d1970410 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -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;