X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=f66cd5a8ec630685ca3e8f0faf7cf5ba46b18c08;hb=b575c2686bc0343cc0825573403bd56f7b50ed6a;hp=fc6cf98a586867364db73a8c057a0b0e4b475272;hpb=ce897e90af2ccdd09733a45f8322514a265df612;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index fc6cf98a58..f66cd5a8ec 100644 --- a/load.php +++ b/load.php @@ -31,23 +31,20 @@ if ( !function_exists( 'version_compare' ) || version_compare( PHP_VERSION, '5.3 require __DIR__ . '/includes/WebStart.php'; -wfProfileIn( 'load.php' ); // URL safety checks if ( !$wgRequest->checkUrlExtension() ) { return; } -// Respond to resource loading request -$resourceLoader = new ResourceLoader( - ConfigFactory::getDefaultInstance()->makeConfig( 'main' ) -); +// 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();