From f2e55d12739c3191ce5d8a69ffdfe3126591a6f2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 18 Dec 2013 17:02:33 +0100 Subject: [PATCH] Rename SpecialRecentchangeslinked class to SpecialRecentChangesLinked For consistency with SpecialRecentChanges. This introduces no incompatibilities as PHP classes are case-insensitive. Change-Id: I5855074deed52fd7492f033c8a8fced8af647602 --- includes/AutoLoader.php | 2 +- includes/SpecialPageFactory.php | 2 +- includes/changes/RecentChange.php | 2 +- includes/specials/SpecialRecentchangeslinked.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index 58c8461368..55fef90d83 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -987,7 +987,7 @@ $wgAutoloadLocalClasses = array( 'SpecialRandomInCategory' => 'includes/specials/SpecialRandomInCategory.php', 'SpecialRandomredirect' => 'includes/specials/SpecialRandomredirect.php', 'SpecialRecentChanges' => 'includes/specials/SpecialRecentchanges.php', - 'SpecialRecentchangeslinked' => 'includes/specials/SpecialRecentchangeslinked.php', + 'SpecialRecentChangesLinked' => 'includes/specials/SpecialRecentchangeslinked.php', 'SpecialRedirect' => 'includes/specials/SpecialRedirect.php', 'SpecialResetTokens' => 'includes/specials/SpecialResetTokens.php', 'SpecialRevisionDelete' => 'includes/specials/SpecialRevisiondelete.php', diff --git a/includes/SpecialPageFactory.php b/includes/SpecialPageFactory.php index 30eb129a27..aa5ac87cb1 100644 --- a/includes/SpecialPageFactory.php +++ b/includes/SpecialPageFactory.php @@ -109,7 +109,7 @@ class SpecialPageFactory { 'Watchlist' => 'SpecialWatchlist', 'Newpages' => 'SpecialNewpages', 'Recentchanges' => 'SpecialRecentChanges', - 'Recentchangeslinked' => 'SpecialRecentchangeslinked', + 'Recentchangeslinked' => 'SpecialRecentChangesLinked', 'Tags' => 'SpecialTags', // Media reports and uploads diff --git a/includes/changes/RecentChange.php b/includes/changes/RecentChange.php index 0ef71c42f5..f1f2578ca7 100644 --- a/includes/changes/RecentChange.php +++ b/includes/changes/RecentChange.php @@ -84,7 +84,7 @@ class RecentChange { */ private $mPerformer = false; - public $numberofWatchingusers = 0; # Dummy to prevent error message in SpecialRecentchangeslinked + public $numberofWatchingusers = 0; # Dummy to prevent error message in SpecialRecentChangesLinked public $notificationtimestamp; /** diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index f37ea20720..afd5b4ee8e 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -26,7 +26,7 @@ * * @ingroup SpecialPage */ -class SpecialRecentchangeslinked extends SpecialRecentChanges { +class SpecialRecentChangesLinked extends SpecialRecentChanges { var $rclTargetTitle; function __construct() { -- 2.20.1