From bdf0ebdc4f910d18fad3c0e255dc4049143f593e Mon Sep 17 00:00:00 2001 From: Marius Burkard Date: Wed, 14 Nov 2018 20:29:01 +0100 Subject: [PATCH] - removed line that drops the ISPConfig database (and was not executed before due to a sql syntax error) --- install/lib/installer_base.lib.php | 1 - 1 file changed, 1 deletion(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index e469634b38..3a8338bfc3 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -280,7 +280,6 @@ class installer_base { // Delete ISPConfig user in the local database, in case that it exists $this->db->query("DROP USER ?@?", $conf['mysql']['ispconfig_user'], $from_host); - $this->db->query("DROP DATABASE IF EXISTS ??", $conf['mysql']['database']); //* Create the ISPConfig database user in the local database $query = 'GRANT SELECT, INSERT, UPDATE, DELETE ON ?? TO ?@? IDENTIFIED BY ?'; -- GitLab