X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=load.php;h=2b97f7aa2a85109c68ca13f655e129c2c69c4e76;hb=049fb94979e6d79e4adbbeb4c9c968a67a478426;hp=e65b09ef17d97e7e30cbc1045aee0e17e56fd846;hpb=cb2896f90ebef77c02c9da4067b0e56e37471092;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index e65b09ef17..2b97f7aa2a 100644 --- a/load.php +++ b/load.php @@ -24,27 +24,27 @@ 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. Log warnings for violations of the no-session +// constraint. +define( 'MW_NO_SESSION', 'warn' ); 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 );