From: Alexandre Emsenhuber Date: Tue, 12 Nov 2013 14:57:49 +0000 (+0100) Subject: Use correct case for SpecialRecentChanges class in SpecialPageFactory::$mList X-Git-Tag: 1.31.0-rc.0~18177^2 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=fb04b4a3ec18797e026e0b0862ee6d6c61622f93;p=lhc%2Fweb%2Fwiklou.git Use correct case for SpecialRecentChanges class in SpecialPageFactory::$mList Was giving the following message in the debug log: Class SpecialRecentchanges was loaded using incorrect case. Change-Id: I11c90eebeed135d03cb326d484f849cae21d87da --- diff --git a/includes/SpecialPageFactory.php b/includes/SpecialPageFactory.php index 11edc8ac84..1ede0c17c5 100644 --- a/includes/SpecialPageFactory.php +++ b/includes/SpecialPageFactory.php @@ -108,7 +108,7 @@ class SpecialPageFactory { 'Log' => 'SpecialLog', 'Watchlist' => 'SpecialWatchlist', 'Newpages' => 'SpecialNewpages', - 'Recentchanges' => 'SpecialRecentchanges', + 'Recentchanges' => 'SpecialRecentChanges', 'Recentchangeslinked' => 'SpecialRecentchangeslinked', 'Tags' => 'SpecialTags',