From 53912df2eaef03913dca72965dbab8a48deaa4e7 Mon Sep 17 00:00:00 2001 From: saper Date: Fri, 23 Oct 2015 22:09:04 +0200 Subject: [PATCH] installer: Remove additional newline in LocalSettings.php Change-Id: I6a0630d109c0ab4299507d125e4e1748055bcd58 --- includes/installer/LocalSettingsGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'] ) { -- 2.20.1