From: Bartosz Dziewoński Date: Tue, 4 Nov 2014 16:51:53 +0000 (+0100) Subject: Make load.php parse in PHP 4 again X-Git-Tag: 1.31.0-rc.0~13399 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=commitdiff_plain;h=e65d02d5856394db416746baa46b98ad6760351a;p=lhc%2Fweb%2Fwiklou.git Make load.php parse in PHP 4 again Not sure what for, but if it "needs" to parse, then let's make it parse… Change-Id: I28ec3b3a86f6eb90e3341f967649fb4c910966d7 --- 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();