From 6a22fbbf78be69ca02fb92061a6c8b578109debf Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Sun, 27 Dec 2015 16:26:15 +0100 Subject: [PATCH] fix wrong webserver-setting when chosing apache-2.4 in the installation process, thx to TByte Signed-off-by: Michael Kaufmann (d00p) --- install/lib/class.FroxlorInstall.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install/lib/class.FroxlorInstall.php b/install/lib/class.FroxlorInstall.php index bc962166..ef50aa2a 100644 --- a/install/lib/class.FroxlorInstall.php +++ b/install/lib/class.FroxlorInstall.php @@ -455,6 +455,7 @@ class FroxlorInstall { // necessary changes for webservers != apache2 if ($this->_data['webserver'] == "apache24") { + $this->_updateSetting($upd_stmt, 'apache2', 'system', 'webserver'); $this->_updateSetting($upd_stmt, '1', 'system', 'apache24'); } elseif ($this->_data['webserver'] == "lighttpd") { $this->_updateSetting($upd_stmt, '/etc/lighttpd/conf-enabled/', 'system', 'apacheconf_vhost');