From: root Date: Mon, 24 Mar 2014 16:40:22 +0000 (+0100) Subject: Autoloader incorrect case warnings fixed X-Git-Tag: 1.31.0-rc.0~16513^2 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=d139a25bf8b1ab43d80df3689c1651fd836ba55d;p=lhc%2Fweb%2Fwiklou.git Autoloader incorrect case warnings fixed Change-Id: I610de60b49840a26ddb7ceeb14264aec77dc8b96 --- diff --git a/includes/specialpage/SpecialPageFactory.php b/includes/specialpage/SpecialPageFactory.php index 654e7ea69c..c4b840a558 100644 --- a/includes/specialpage/SpecialPageFactory.php +++ b/includes/specialpage/SpecialPageFactory.php @@ -50,28 +50,28 @@ class SpecialPageFactory { private static $list = array( // Maintenance Reports 'BrokenRedirects' => 'BrokenRedirectsPage', - 'Deadendpages' => 'DeadendpagesPage', + 'Deadendpages' => 'DeadendPagesPage', 'DoubleRedirects' => 'DoubleRedirectsPage', - 'Longpages' => 'LongpagesPage', - 'Ancientpages' => 'AncientpagesPage', - 'Lonelypages' => 'LonelypagesPage', + 'Longpages' => 'LongPagesPage', + 'Ancientpages' => 'AncientPagesPage', + 'Lonelypages' => 'LonelyPagesPage', 'Fewestrevisions' => 'FewestrevisionsPage', - 'Withoutinterwiki' => 'WithoutinterwikiPage', + 'Withoutinterwiki' => 'WithoutInterwikiPage', 'Protectedpages' => 'SpecialProtectedpages', 'Protectedtitles' => 'SpecialProtectedtitles', 'Shortpages' => 'ShortpagesPage', - 'Uncategorizedcategories' => 'UncategorizedcategoriesPage', - 'Uncategorizedimages' => 'UncategorizedimagesPage', - 'Uncategorizedpages' => 'UncategorizedpagesPage', - 'Uncategorizedtemplates' => 'UncategorizedtemplatesPage', - 'Unusedcategories' => 'UnusedcategoriesPage', + 'Uncategorizedcategories' => 'UncategorizedCategoriesPage', + 'Uncategorizedimages' => 'UncategorizedImagesPage', + 'Uncategorizedpages' => 'UncategorizedPagesPage', + 'Uncategorizedtemplates' => 'UncategorizedTemplatesPage', + 'Unusedcategories' => 'UnusedCategoriesPage', 'Unusedimages' => 'UnusedimagesPage', 'Unusedtemplates' => 'UnusedtemplatesPage', 'Unwatchedpages' => 'UnwatchedpagesPage', - 'Wantedcategories' => 'WantedcategoriesPage', - 'Wantedfiles' => 'WantedfilesPage', - 'Wantedpages' => 'WantedpagesPage', - 'Wantedtemplates' => 'WantedtemplatesPage', + 'Wantedcategories' => 'WantedCategoriesPage', + 'Wantedfiles' => 'WantedFilesPage', + 'Wantedpages' => 'WantedPagesPage', + 'Wantedtemplates' => 'WantedTemplatesPage', // List of pages 'Allpages' => 'SpecialAllpages', @@ -128,7 +128,7 @@ class SpecialPageFactory { // Redirecting special pages 'LinkSearch' => 'LinkSearchPage', - 'Randompage' => 'Randompage', + 'Randompage' => 'RandomPage', 'RandomInCategory' => 'SpecialRandomInCategory', 'Randomredirect' => 'SpecialRandomredirect', @@ -146,7 +146,7 @@ class SpecialPageFactory { 'Export' => 'SpecialExport', 'Import' => 'SpecialImport', 'Undelete' => 'SpecialUndelete', - 'Whatlinkshere' => 'SpecialWhatlinkshere', + 'Whatlinkshere' => 'SpecialWhatLinksHere', 'MergeHistory' => 'SpecialMergeHistory', 'ExpandTemplates' => 'SpecialExpandTemplates', @@ -187,7 +187,7 @@ class SpecialPageFactory { wfProfileIn( __METHOD__ ); if ( !$wgDisableCounters ) { - self::$list['Popularpages'] = 'PopularpagesPage'; + self::$list['Popularpages'] = 'PopularPagesPage'; } if ( !$wgDisableInternalSearch ) {