From 99d49967ddc63f008b93869b7f7f25e28222d232 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 4 Jun 2009 19:23:13 +0000 Subject: [PATCH] Fix case for "Recentchanges" (and not "RecentChanges") so that SpecialPage::getLocalNameFor() doesn't emit an error --- includes/specials/SpecialTags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1