X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=e23180799b361bade47f7a53bdc2b9a37a4ad453;hb=0e54c034458b92199524ea4a8e5e4b7db381ef5d;hp=d77a689dea144da60768413e8258f509694b6ba0;hpb=e58e4b498dcccdc8ce98373e04c27cdfbd4b3a04;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index d77a689dea..e23180799b 100644 --- a/load.php +++ b/load.php @@ -22,12 +22,10 @@ * @author Trevor Parscal */ -// Bail if PHP is too low -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' ); -} +// 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'; @@ -43,11 +41,7 @@ $configFactory = ConfigFactory::getDefaultInstance(); $resourceLoader = new ResourceLoader( $configFactory->makeConfig( 'main' ) ); $resourceLoader->respond( new ResourceLoaderContext( $resourceLoader, $wgRequest ) ); -JobQueueGroup::pushLazyJobs(); - Profiler::instance()->setTemplated( true ); -wfLogProfilingData(); -// Shut down the database. -$lb = wfGetLBFactory(); -$lb->shutdown(); +$mediawiki = new MediaWiki(); +$mediawiki->doPostOutputShutdown( 'fast' );