X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=load.php;h=22f62fe9caaaeee0543915055d573766ca1f4b2e;hp=e23180799b361bade47f7a53bdc2b9a37a4ad453;hb=a8454a95639910c9ac196d80d07d6c2f62f106ad;hpb=973459bd0e339fe15c7f78f1dbfc43a19e1b5712 diff --git a/load.php b/load.php index e23180799b..22f62fe9ca 100644 --- a/load.php +++ b/load.php @@ -22,6 +22,8 @@ * @author Trevor Parscal */ +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'; @@ -38,7 +40,10 @@ 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 ) ); Profiler::instance()->setTemplated( true );