Add Interwiki extension to core.
[lhc/web/wiklou.git] / includes / AutoLoader.php
index 0afa01f..0860002 100644 (file)
@@ -87,6 +87,7 @@ $wgAutoloadLocalClasses = array(
        'HTMLCacheUpdateJob' => 'includes/HTMLCacheUpdate.php',
        'HTMLFileCache' => 'includes/HTMLFileCache.php',
        'Http' => 'includes/HttpFunctions.php',
+       'IEContentAnalyzer' => 'includes/IEContentAnalyzer.php',
        'ImageGallery' => 'includes/ImageGallery.php',
        'ImageHistoryList' => 'includes/ImagePage.php',
        'ImagePage' => 'includes/ImagePage.php',
@@ -364,6 +365,7 @@ $wgAutoloadLocalClasses = array(
        # includes/filerepo
        'ArchivedFile' => 'includes/filerepo/ArchivedFile.php',
        'File' => 'includes/filerepo/File.php',
+       'FileCache' => 'includes/filerepo/FileCache.php',
        'FileRepo' => 'includes/filerepo/FileRepo.php',
        'FileRepoStatus' => 'includes/filerepo/FileRepoStatus.php',
        'ForeignAPIFile' => 'includes/filerepo/ForeignAPIFile.php',
@@ -425,7 +427,6 @@ $wgAutoloadLocalClasses = array(
        'ParserOutput' => 'includes/parser/ParserOutput.php',
        'Parser_DiffTest' => 'includes/parser/Parser_DiffTest.php',
        'Parser_LinkHooks' => 'includes/parser/Parser_LinkHooks.php',
-       'Parser_OldPP' => 'includes/parser/Parser_OldPP.php',
        'Preprocessor' => 'includes/parser/Preprocessor.php',
        'Preprocessor_DOM' => 'includes/parser/Preprocessor_DOM.php',
        'Preprocessor_Hash' => 'includes/parser/Preprocessor_Hash.php',
@@ -479,6 +480,7 @@ $wgAutoloadLocalClasses = array(
        'SpecialAllpages' => 'includes/specials/SpecialAllpages.php',
        'SpecialBookSources' => 'includes/specials/SpecialBooksources.php',
        'SpecialImport' => 'includes/specials/SpecialImport.php',
+       'SpecialInterwiki' => 'includes/specials/SpecialInterwiki.php',
        'SpecialListGroupRights' => 'includes/specials/SpecialListgrouprights.php',
        'SpecialMostlinkedtemplates' => 'includes/specials/SpecialMostlinkedtemplates.php',
        'SpecialPrefixindex' => 'includes/specials/SpecialPrefixindex.php',
@@ -487,6 +489,7 @@ $wgAutoloadLocalClasses = array(
        'SpecialRecentchangeslinked' => 'includes/specials/SpecialRecentchangeslinked.php',
        'SpecialSearch' => 'includes/specials/SpecialSearch.php',
        'SpecialSearchOld' => 'includes/specials/SpecialSearch.php',
+       'SpecialStatistics' => 'includes/specials/SpecialStatistics.php',
        'SpecialVersion' => 'includes/specials/SpecialVersion.php',
        'UncategorizedCategoriesPage' => 'includes/specials/SpecialUncategorizedcategories.php',
        'UncategorizedPagesPage' => 'includes/specials/SpecialUncategorizedpages.php',
@@ -556,7 +559,6 @@ class AutoLoader {
                                if( function_exists( 'wfDebug' ) )      
                                        wfDebug( "Class {$className} not found; skipped loading" );
                                # Give up
-                               wfProfileOut( __METHOD__ );
                                return false;
                        }
                }