From 2bcaf41e5795efbd3806d0686f813836b73c0f78 Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Fri, 1 Oct 2010 22:13:29 +0000 Subject: [PATCH] Fixed mistake in r73686 where I wrapped CSS in a JavaScript conditional. --- includes/OutputPage.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 99a9b8c40d..296ad966f2 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2323,9 +2323,7 @@ class OutputPage { $context = new ResourceLoaderContext( $this->mResourceLoader, new FauxRequest( $query ) ); if ( $only == 'styles' ) { $links .= Html::inlineStyle( - ResourceLoader::makeLoaderConditionalScript( - $this->mResourceLoader->makeModuleResponse( $context, $modules ) - ) + $this->mResourceLoader->makeModuleResponse( $context, $modules ) ); } else { $links .= Html::inlineScript( -- 2.20.1