X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=8b2390931d1cf28c38829b96e8e729590a506dda;hb=e774a8a779d48d709b54a8105677f1ec88ed71b8;hp=1dd1a8939ccaf03175937a1978d9a81bb821d1b3;hpb=e4fc0b772130dd520f98b1db9e9313215569239e;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index 1dd1a8939c..8b2390931d 100644 --- a/load.php +++ b/load.php @@ -23,7 +23,7 @@ */ // Bail if PHP is too low -if ( !function_exists( 'version_compare' ) || version_compare( PHP_VERSION, '5.3.2' ) < 0 ) { +if ( !function_exists( 'version_compare' ) || version_compare( PHP_VERSION, '5.3.3' ) < 0 ) { // We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+ require dirname( __FILE__ ) . '/includes/PHPVersionError.php'; wfPHPVersionError( 'load.php' ); @@ -38,14 +38,15 @@ if ( !$wgRequest->checkUrlExtension() ) { return; } -// Respond to resource loading request -$resourceLoader = new ResourceLoader(); +// Respond to resource loading request. +// foo()->bar() syntax is not supported in PHP4, and this file needs to *parse* in PHP4. +$configFactory = ConfigFactory::getDefaultInstance(); +$resourceLoader = new ResourceLoader( $configFactory->makeConfig( 'main' ) ); $resourceLoader->respond( new ResourceLoaderContext( $resourceLoader, $wgRequest ) ); wfProfileOut( 'load.php' ); wfLogProfilingData(); -// Shut down the database. foo()->bar() syntax is not supported in PHP4, and this file -// needs to *parse* in PHP4, although we'll never get down here to worry about = vs =& +// Shut down the database. $lb = wfGetLBFactory(); $lb->shutdown();