From 8cabbc7e50566fd660e6f8a24d454be3d4ffcf29 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Wed, 14 Oct 2020 17:56:56 -0400 Subject: [PATCH] Fix SQL syntax error in 3.5.0.2.sql upgrade Refs #435 --- install/upgrades/3.5.0.2.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/upgrades/3.5.0.2.sql b/install/upgrades/3.5.0.2.sql index 21ae6b9f..cf69b669 100644 --- a/install/upgrades/3.5.0.2.sql +++ b/install/upgrades/3.5.0.2.sql @@ -2,4 +2,4 @@ INSERT IGNORE INTO `domaines_type` (name, description, target, entry, compatibility, only_dns, need_dns, advanced, enable, has_https_option) values ('vhost-http','Locally hosted with http->https', 'DIRECTORY', '%SUB% IN A @@PUBLIC_IP@@', 'txt,defmx,defmx2,mx,mx2', false, false, false, 'NONE', false), ('vhost-https','Locally hosted with http->https', 'DIRECTORY', '%SUB% IN A @@PUBLIC_IP@@', 'txt,defmx,defmx2,mx,mx2', false, false, false, 'NONE', false), -('vhost-both', 'Locally hosted with http and https', 'DIRECTORY', '%SUB% IN A @@PUBLIC_IP@@', 'txt,defmx,defmx2,mx,mx2', false, false, false, 'NONE', false), +('vhost-both', 'Locally hosted with http and https', 'DIRECTORY', '%SUB% IN A @@PUBLIC_IP@@', 'txt,defmx,defmx2,mx,mx2', false, false, false, 'NONE', false);