From: Sergio Santoro Date: Fri, 27 Jun 2014 19:03:37 +0000 (+0200) Subject: installer: Remove unnecessary param to outputCss() X-Git-Tag: 1.31.0-rc.0~15181^2 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=debe7cf7e6f5317b6f22f6307b088ea0b7bc7bc2;p=lhc%2Fweb%2Fwiklou.git installer: Remove unnecessary param to outputCss() WebInstaller::outputCss no longer requires an argument as of I717cb299b3639024. Change-Id: I85c1624eb99affd5df809a041cfc9f22fc46945a --- 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; }