From 371d6eb66790667200f2db8bb30e8dac6fefa10e Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 25 May 2011 14:16:21 +0000 Subject: [PATCH] Fix r88125: forgot to remove another call to mw.loader.go() --- includes/OutputPage.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 64c494749a..186ca777b8 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2576,8 +2576,7 @@ class OutputPage { if ( $modules ) { $scripts .= Html::inlineScript( ResourceLoader::makeLoaderConditionalScript( - Xml::encodeJsCall( 'mw.loader.load', array( $modules ) ) . - Xml::encodeJsCall( 'mw.loader.go', array() ) + Xml::encodeJsCall( 'mw.loader.load', array( $modules ) ) ) ); } -- 2.20.1