X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=c832237059948450919f8cd895c75e176ae3defb;hb=f45eb483ff23fbb8ad281a72a93d875ac4b7cc08;hp=43c2fafce817a999276364e1acd7ba299f415664;hpb=ce6d7b945fdcabe55c5cb0aff8723e0010a8ab56;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index 43c2fafce8..c832237059 100644 --- a/load.php +++ b/load.php @@ -24,22 +24,26 @@ use MediaWiki\Logger\LoggerFactory; -require __DIR__ . '/includes/WebStart.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 );