Separate the Special:Preferences title and the link to the preferences from the perso...
[lhc/web/wiklou.git] / includes / AutoLoader.php
index 8389813..63ac24b 100644 (file)
@@ -22,6 +22,7 @@ function __autoload($className) {
                'Block' => 'includes/Block.php',
                'CacheManager' => 'includes/CacheManager.php',
                'CategoryPage' => 'includes/CategoryPage.php',
+               'CategoryViewer' => 'includes/CategoryPage.php',
                'Categoryfinder' => 'includes/Categoryfinder.php',
                'RCCacheEntry' => 'includes/ChangesList.php',
                'ChangesList' => 'includes/ChangesList.php',
@@ -89,6 +90,7 @@ function __autoload($className) {
                'HTMLCacheUpdateJob' => 'includes/HTMLCacheUpdate.php',
                'Http' => 'includes/HttpFunctions.php',
                'Image' => 'includes/Image.php',
+               'IP' => 'includes/IP.php',
                'ThumbnailImage' => 'includes/Image.php',
                'ImageGallery' => 'includes/ImageGallery.php',
                'ImagePage' => 'includes/ImagePage.php',
@@ -115,16 +117,14 @@ function __autoload($className) {
                'PageHistory' => 'includes/PageHistory.php',
                'IndexPager' => 'includes/Pager.php',
                'ReverseChronologicalPager' => 'includes/Pager.php',
+               'TablePager' => 'includes/Pager.php',
                'Parser' => 'includes/Parser.php',
                'ParserOutput' => 'includes/Parser.php',
                'ParserOptions' => 'includes/Parser.php',
                'ParserCache' => 'includes/ParserCache.php',
-               'element' => 'includes/ParserXML.php',
-               'xml2php' => 'includes/ParserXML.php',
-               'ParserXML' => 'includes/ParserXML.php',
                'ProfilerSimple' => 'includes/ProfilerSimple.php',
                'ProfilerSimpleUDP' => 'includes/ProfilerSimpleUDP.php',
-               'Profiler' => 'includes/Profiling.php',
+               'Profiler' => 'includes/Profiler.php',
                'ProxyTools' => 'includes/ProxyTools.php',
                'ProtectionForm' => 'includes/ProtectionForm.php',
                'QueryPage' => 'includes/QueryPage.php',
@@ -215,6 +215,7 @@ function __autoload($className) {
                'EmailNotification' => 'includes/UserMailer.php',
                'WatchedItem' => 'includes/WatchedItem.php',
                'WebRequest' => 'includes/WebRequest.php',
+               'WebResponse' => 'includes/WebResponse.php',
                'FauxRequest' => 'includes/WebRequest.php',
                'MediaWiki' => 'includes/Wiki.php',
                'WikiError' => 'includes/WikiError.php',
@@ -223,7 +224,10 @@ function __autoload($className) {
                'Xml' => 'includes/Xml.php',
                'ZhClient' => 'includes/ZhClient.php',
                'memcached' => 'includes/memcached-client.php',
-               'UtfNormal' => 'includes/normal/UtfNormal.php'
+               'UtfNormal' => 'includes/normal/UtfNormal.php',
+               'UsercreateTemplate' => 'includes/templates/Userlogin.php',
+               'UserloginTemplate' => 'includes/templates/Userlogin.php',
+               'Language' => 'languages/Language.php',
        );
        if ( isset( $localClasses[$className] ) ) {
                $filename = $localClasses[$className];