fix add/edit domain due to wrong access to settings; setting version to 0.9.39.4 for bugfix release
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
@@ -687,7 +687,7 @@ opcache.interned_strings_buffer'),
|
|||||||
('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.39.3'),
|
('panel', 'version', '0.9.39.4'),
|
||||||
('panel', 'db_version', '201802130');
|
('panel', 'db_version', '201802130');
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -3927,3 +3927,9 @@ if (isFroxlorVersion('0.9.39.2')) {
|
|||||||
showUpdateStep("Updating from 0.9.39.2 to 0.9.39.3", false);
|
showUpdateStep("Updating from 0.9.39.2 to 0.9.39.3", false);
|
||||||
updateToVersion('0.9.39.3');
|
updateToVersion('0.9.39.3');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isFroxlorVersion('0.9.39.3')) {
|
||||||
|
|
||||||
|
showUpdateStep("Updating from 0.9.39.3 to 0.9.39.4", false);
|
||||||
|
updateToVersion('0.9.39.4');
|
||||||
|
}
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ return array(
|
|||||||
'rows' => 12
|
'rows' => 12
|
||||||
),
|
),
|
||||||
'notryfiles' => array(
|
'notryfiles' => array(
|
||||||
'visible' => (Settings('system.webserver') == 'nginx' && $userinfo['change_serversettings'] == '1'),
|
'visible' => (Settings::Get('system.webserver') == 'nginx' && $userinfo['change_serversettings'] == '1'),
|
||||||
'label' => $lng['admin']['notryfiles']['title'],
|
'label' => $lng['admin']['notryfiles']['title'],
|
||||||
'desc' => $lng['admin']['notryfiles']['description'],
|
'desc' => $lng['admin']['notryfiles']['description'],
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
|
|||||||
@@ -163,7 +163,7 @@ return array(
|
|||||||
)
|
)
|
||||||
),
|
),
|
||||||
'notryfiles' => array(
|
'notryfiles' => array(
|
||||||
'visible' => (Settings('system.webserver') == 'nginx' && $userinfo['change_serversettings'] == '1'),
|
'visible' => (Settings::Get('system.webserver') == 'nginx' && $userinfo['change_serversettings'] == '1'),
|
||||||
'label' => $lng['admin']['notryfiles']['title'],
|
'label' => $lng['admin']['notryfiles']['title'],
|
||||||
'desc' => $lng['admin']['notryfiles']['description'],
|
'desc' => $lng['admin']['notryfiles']['description'],
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Main version variable
|
// Main version variable
|
||||||
$version = '0.9.39.3';
|
$version = '0.9.39.4';
|
||||||
|
|
||||||
// Database version (YYYYMMDDC where C is a daily counter)
|
// Database version (YYYYMMDDC where C is a daily counter)
|
||||||
$dbversion = '201802130';
|
$dbversion = '201802130';
|
||||||
|
|||||||
Reference in New Issue
Block a user