From debe7cf7e6f5317b6f22f6307b088ea0b7bc7bc2 Mon Sep 17 00:00:00 2001 From: Sergio Santoro Date: Fri, 27 Jun 2014 21:03:37 +0200 Subject: [PATCH] installer: Remove unnecessary param to outputCss() WebInstaller::outputCss no longer requires an argument as of I717cb299b3639024. Change-Id: I85c1624eb99affd5df809a041cfc9f22fc46945a --- mw-config/index.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mw-config/index.php b/mw-config/index.php index d22454f841..56c1308956 100644 --- a/mw-config/index.php +++ b/mw-config/index.php @@ -39,8 +39,7 @@ function wfInstallerMain() { if( $installer->request->getVal( "css" ) ) { // Do not display errors on css pages - $cssDir = $installer->request->getVal( "css" ); - $installer->outputCss( $cssDir ); + $installer->outputCss(); exit; } -- 2.20.1