X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=8b2390931d1cf28c38829b96e8e729590a506dda;hb=5a5d910a3537b569c1feeed3d4aac3b222792f09;hp=fc6cf98a586867364db73a8c057a0b0e4b475272;hpb=a5aa9f0b95bad2e1a5f1cefdbe11372e9748257c;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index fc6cf98a58..8b2390931d 100644 --- a/load.php +++ b/load.php @@ -38,16 +38,15 @@ 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();