X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=e23180799b361bade47f7a53bdc2b9a37a4ad453;hb=67a20b6e434b0cd3e2d3b3555f14ae096e4e4132;hp=1dd1a8939ccaf03175937a1978d9a81bb821d1b3;hpb=684399a5bdf68aa744cc5658dfd4f8ba6fed964e;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index 1dd1a8939c..e23180799b 100644 --- a/load.php +++ b/load.php @@ -22,30 +22,26 @@ * @author Trevor Parscal */ -// Bail if PHP is too low -if ( !function_exists( 'version_compare' ) || version_compare( PHP_VERSION, '5.3.2' ) < 0 ) { - // We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+ - require dirname( __FILE__ ) . '/includes/PHPVersionError.php'; - wfPHPVersionError( 'load.php' ); -} +// Bail on old versions of PHP, or if composer has not been run yet to install +// dependencies. Using dirname( __FILE__ ) here because __DIR__ is PHP5.3+. +require_once dirname( __FILE__ ) . '/includes/PHPVersionCheck.php'; +wfEntryPointCheck( 'load.php' ); require __DIR__ . '/includes/WebStart.php'; -wfProfileIn( 'load.php' ); // URL safety checks 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(); +Profiler::instance()->setTemplated( true ); -// 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 =& -$lb = wfGetLBFactory(); -$lb->shutdown(); +$mediawiki = new MediaWiki(); +$mediawiki->doPostOutputShutdown( 'fast' );