From: Domas Mituzas Date: Wed, 7 Jun 2006 12:26:58 +0000 (+0000) Subject: autoload Profiling, ParserCache, WebRequest X-Git-Tag: 1.31.0-rc.0~56847 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=d49e2679259f2dd8a42e945e138a7eedc45162ed;p=lhc%2Fweb%2Fwiklou.git autoload Profiling, ParserCache, WebRequest --- diff --git a/includes/Setup.php b/includes/Setup.php index 9b90b899fe..682d176cf6 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -28,7 +28,6 @@ if( !isset( $wgProfiling ) ) if ( function_exists( 'wfProfileIn' ) ) { /* nada, everything should be done already */ } elseif ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) { - require_once( 'Profiling.php' ); $wgProfiling = true; if ($wgProfilerType == "") { $wgProfiler = new Profiler(); @@ -62,8 +61,6 @@ require_once( 'MagicWord.php' ); require_once( 'Block.php' ); require_once( 'MessageCache.php' ); require_once( 'Parser.php' ); -require_once( 'ParserCache.php' ); -require_once( 'WebRequest.php' ); require_once( 'LoadBalancer.php' ); require_once( 'HistoryBlob.php' ); require_once( 'ProxyTools.php' );