X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=22f62fe9caaaeee0543915055d573766ca1f4b2e;hb=da558e9b2fd3c9e8361b2f75c315f3c9bda880e5;hp=8b2390931d1cf28c38829b96e8e729590a506dda;hpb=dd53b928b933ece1478c04b41c1ef3067ecbebae;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index 8b2390931d..22f62fe9ca 100644 --- a/load.php +++ b/load.php @@ -22,16 +22,15 @@ * @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' ); -} +use MediaWiki\Logger\LoggerFactory; + +// 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() ) { @@ -41,12 +40,13 @@ if ( !$wgRequest->checkUrlExtension() ) { // 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 = new ResourceLoader( + $configFactory->makeConfig( 'main' ), + LoggerFactory::getInstance( 'resourceloader' ) +); $resourceLoader->respond( new ResourceLoaderContext( $resourceLoader, $wgRequest ) ); -wfProfileOut( 'load.php' ); -wfLogProfilingData(); +Profiler::instance()->setTemplated( true ); -// Shut down the database. -$lb = wfGetLBFactory(); -$lb->shutdown(); +$mediawiki = new MediaWiki(); +$mediawiki->doPostOutputShutdown( 'fast' );