Rename SpecialRecentchangeslinked class to SpecialRecentChangesLinked
authorBartosz Dziewoński <matma.rex@gmail.com>
Wed, 18 Dec 2013 16:02:33 +0000 (17:02 +0100)
committerBartosz Dziewoński <matma.rex@gmail.com>
Wed, 18 Dec 2013 20:00:34 +0000 (20:00 +0000)
For consistency with SpecialRecentChanges.

This introduces no incompatibilities as PHP classes are case-insensitive.

Change-Id: I5855074deed52fd7492f033c8a8fced8af647602

includes/AutoLoader.php
includes/SpecialPageFactory.php
includes/changes/RecentChange.php
includes/specials/SpecialRecentchangeslinked.php

index 58c8461..55fef90 100644 (file)
@@ -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',
index 30eb129..aa5ac87 100644 (file)
@@ -109,7 +109,7 @@ class SpecialPageFactory {
                'Watchlist'                 => 'SpecialWatchlist',
                'Newpages'                  => 'SpecialNewpages',
                'Recentchanges'             => 'SpecialRecentChanges',
-               'Recentchangeslinked'       => 'SpecialRecentchangeslinked',
+               'Recentchangeslinked'       => 'SpecialRecentChangesLinked',
                'Tags'                      => 'SpecialTags',
 
                // Media reports and uploads
index 0ef71c4..f1f2578 100644 (file)
@@ -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;
 
        /**
index f37ea20..afd5b4e 100644 (file)
@@ -26,7 +26,7 @@
  *
  * @ingroup SpecialPage
  */
-class SpecialRecentchangeslinked extends SpecialRecentChanges {
+class SpecialRecentChangesLinked extends SpecialRecentChanges {
        var $rclTargetTitle;
 
        function __construct() {