Remove hack for old APC bug that's fixed now. Was causing problems for DumpHTML ...
authorTim Starling <tstarling@users.mediawiki.org>
Sun, 29 Jun 2008 20:02:42 +0000 (20:02 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sun, 29 Jun 2008 20:02:42 +0000 (20:02 +0000)
includes/AutoLoader.php

index ba31ce6..35e56a5 100644 (file)
@@ -500,14 +500,6 @@ class AutoLoader {
        static function loadAllExtensions() {
                global $wgAutoloadClasses;
 
-               # It is crucial that SpecialPage.php is included before any special page
-               # extensions are loaded. Otherwise the parent class will not be available
-               # when APC loads the early-bound extension class. Normally this is
-               # guaranteed by entering special pages via SpecialPage members such as
-               # executePath(), but here we have to take a more explicit measure.
-
-               require_once( dirname(__FILE__) . '/SpecialPage.php' );
-
                foreach( $wgAutoloadClasses as $class => $file ) {
                        if( !( class_exists( $class ) || interface_exists( $class ) ) ) {
                                require( $file );