X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=blobdiff_plain;ds=sidebyside;f=load.php;h=2b97f7aa2a85109c68ca13f655e129c2c69c4e76;hb=7435b4c13d02c93885e00a4578eb01af83527cc7;hp=1d6a242575af3462c65b640b6a159360e07b9437;hpb=3301e78e5a2e5662952c0564f830a492743f9844;p=lhc%2Fweb%2Fwiklou.git diff --git a/load.php b/load.php index 1d6a242575..2b97f7aa2a 100644 --- a/load.php +++ b/load.php @@ -24,6 +24,11 @@ use MediaWiki\Logger\LoggerFactory; +// 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 @@ -31,14 +36,15 @@ 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 );