X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=c832237059948450919f8cd895c75e176ae3defb;hb=f45eb483ff23fbb8ad281a72a93d875ac4b7cc08;hp=e65b09ef17d97e7e30cbc1045aee0e17e56fd846;hpb=33859dfcf5c3eae9dda11d9a7d5d505ee6b32b64;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index e65b09ef17..c832237059 100644 --- a/load.php +++ b/load.php @@ -24,27 +24,26 @@ 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' ); +// This endpoint is supposed to be independent of request cookies and other +// details of the session. Enforce this constraint with respect to session use. +define( 'MW_NO_SESSION', 1 ); require __DIR__ . '/includes/WebStart.php'; - // URL safety checks if ( !$wgRequest->checkUrlExtension() ) { return; } -// Respond to resource loading request. -// foo()->bar() syntax is not supported in PHP4, and this file needs to *parse* in PHP4. -$configFactory = ConfigFactory::getDefaultInstance(); +// Set up ResourceLoader $resourceLoader = new ResourceLoader( - $configFactory->makeConfig( 'main' ), + ConfigFactory::getDefaultInstance()->makeConfig( 'main' ), LoggerFactory::getInstance( 'resourceloader' ) ); -$resourceLoader->respond( new ResourceLoaderContext( $resourceLoader, $wgRequest ) ); +$context = new ResourceLoaderContext( $resourceLoader, $wgRequest ); + +// Respond to ResourceLoader request +$resourceLoader->respond( $context ); Profiler::instance()->setTemplated( true );