From: saper Date: Fri, 23 Oct 2015 20:09:04 +0000 (+0200) Subject: installer: Remove additional newline in LocalSettings.php X-Git-Tag: 1.31.0-rc.0~9254^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=53912df2eaef03913dca72965dbab8a48deaa4e7;p=lhc%2Fweb%2Fwiklou.git installer: Remove additional newline in LocalSettings.php Change-Id: I6a0630d109c0ab4299507d125e4e1748055bcd58 --- diff --git a/includes/installer/LocalSettingsGenerator.php b/includes/installer/LocalSettingsGenerator.php index 5a2dd1a205..f8b46dbd9f 100644 --- a/includes/installer/LocalSettingsGenerator.php +++ b/includes/installer/LocalSettingsGenerator.php @@ -287,7 +287,7 @@ class LocalSettingsGenerator { $serverSetting = ""; if ( array_key_exists( 'wgServer', $this->values ) && $this->values['wgServer'] !== null ) { $serverSetting = "\n## The protocol and server name to use in fully-qualified URLs\n"; - $serverSetting .= "\$wgServer = \"{$this->values['wgServer']}\";\n"; + $serverSetting .= "\$wgServer = \"{$this->values['wgServer']}\";"; } switch ( $this->values['wgMainCacheType'] ) {