Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
16f547bce0 | ||
|
|
60a482dce6 |
@@ -496,7 +496,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
|||||||
('system', 'ssl_cert_chainfile', ''),
|
('system', 'ssl_cert_chainfile', ''),
|
||||||
('system', 'ssl_cipher_list', 'ECDH+AESGCM:ECDH+AES256:!aNULL:!MD5:!DSS:!DH:!AES128'),
|
('system', 'ssl_cipher_list', 'ECDH+AESGCM:ECDH+AES256:!aNULL:!MD5:!DSS:!DH:!AES128'),
|
||||||
('system', 'nginx_php_backend', '127.0.0.1:8888'),
|
('system', 'nginx_php_backend', '127.0.0.1:8888'),
|
||||||
('system', 'nginx_http2_support', '0'),
|
('system', 'nginx_http2_support', '0'),
|
||||||
('system', 'perl_server', 'unix:/var/run/nginx/cgiwrap-dispatch.sock'),
|
('system', 'perl_server', 'unix:/var/run/nginx/cgiwrap-dispatch.sock'),
|
||||||
('system', 'phpreload_command', ''),
|
('system', 'phpreload_command', ''),
|
||||||
('system', 'apache24', '0'),
|
('system', 'apache24', '0'),
|
||||||
@@ -577,7 +577,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
|||||||
('panel', 'password_special_char_required', '0'),
|
('panel', 'password_special_char_required', '0'),
|
||||||
('panel', 'password_special_char', '!?<>§$%+#=@'),
|
('panel', 'password_special_char', '!?<>§$%+#=@'),
|
||||||
('panel', 'customer_hide_options', ''),
|
('panel', 'customer_hide_options', ''),
|
||||||
('panel', 'version', '0.9.38.1'),
|
('panel', 'version', '0.9.38.3'),
|
||||||
('panel', 'db_version', '201611180');
|
('panel', 'db_version', '201611180');
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -3534,3 +3534,15 @@ if (isFroxlorVersion('0.9.38')) {
|
|||||||
showUpdateStep("Updating from 0.9.38 to 0.9.38.1", false);
|
showUpdateStep("Updating from 0.9.38 to 0.9.38.1", false);
|
||||||
updateToVersion('0.9.38.1');
|
updateToVersion('0.9.38.1');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isFroxlorVersion('0.9.38.1')) {
|
||||||
|
|
||||||
|
showUpdateStep("Updating from 0.9.38.1 to 0.9.38.2", false);
|
||||||
|
updateToVersion('0.9.38.2');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isFroxlorVersion('0.9.38.2')) {
|
||||||
|
|
||||||
|
showUpdateStep("Updating from 0.9.38.2 to 0.9.38.3", false);
|
||||||
|
updateToVersion('0.9.38.3');
|
||||||
|
}
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ return array(
|
|||||||
'int_max' => 94608000, // 3-years
|
'int_max' => 94608000, // 3-years
|
||||||
'value' => 0
|
'value' => 0
|
||||||
),
|
),
|
||||||
'hsts_incsub' => array(
|
'hsts_sub' => array(
|
||||||
'visible' => ($ssl_ipsandports != '' ? true : false),
|
'visible' => ($ssl_ipsandports != '' ? true : false),
|
||||||
'label' => $lng['admin']['domain_hsts_incsub']['title'],
|
'label' => $lng['admin']['domain_hsts_incsub']['title'],
|
||||||
'desc' => $lng['admin']['domain_hsts_incsub']['description'],
|
'desc' => $lng['admin']['domain_hsts_incsub']['description'],
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ return array(
|
|||||||
'int_max' => 94608000, // 3-years
|
'int_max' => 94608000, // 3-years
|
||||||
'value' => $result['hsts']
|
'value' => $result['hsts']
|
||||||
),
|
),
|
||||||
'hsts_incsub' => array(
|
'hsts_sub' => array(
|
||||||
'visible' => ($ssl_ipsandports != '' ? true : false),
|
'visible' => ($ssl_ipsandports != '' ? true : false),
|
||||||
'label' => $lng['admin']['domain_hsts_incsub']['title'],
|
'label' => $lng['admin']['domain_hsts_incsub']['title'],
|
||||||
'desc' => $lng['admin']['domain_hsts_incsub']['description'],
|
'desc' => $lng['admin']['domain_hsts_incsub']['description'],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Main version variable
|
// Main version variable
|
||||||
$version = '0.9.38.1';
|
$version = '0.9.38.3';
|
||||||
|
|
||||||
// Database version (YYYYMMDDC where C is a daily counter)
|
// Database version (YYYYMMDDC where C is a daily counter)
|
||||||
$dbversion = '201611180';
|
$dbversion = '201611180';
|
||||||
|
|||||||
Reference in New Issue
Block a user