Skip to content

Commit d240f6d

Browse files
author
Marius Burkard
committed
Merge branch 'master' into 'master'
Master See merge request !252
2 parents bdd7348 + 54161b3 commit d240f6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,4 @@ ALTER TABLE openvz_vm
188188
ADD COLUMN `bootorder` INT(11) NOT NULL DEFAULT '1' AFTER `start_boot`,
189189
ADD COLUMN `custom` text;
190190

191-
ALTER TABLE `web_domain` ADD `ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n';
191+
ALTER TABLE `web_domain` ADD `ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n' AFETR `ssl`;

interface/web/admin/form/server_php.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
'formtype' => 'SELECT',
101101
'default' => '',
102102
'datasource' => array ( 'type' => 'SQL',
103-
'querystring' => "SELECT client_id,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM client WHERE {AUTHSQL} ORDER BY contact_name",
103+
'querystring' => "(SELECT 0 AS client_id, '' AS name) UNION ALL (SELECT client_id,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM client WHERE {AUTHSQL} ORDER BY contact_name)",
104104
'keyfield'=> 'client_id',
105105
'valuefield'=> 'name'
106106
),

0 commit comments

Comments
 (0)