Adding new setting for mod_php users to specify content of the global directory options file, fixes #1638
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
@@ -529,6 +529,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
||||
('system', 'backupenabled', '0'),
|
||||
('system', 'dnsenabled', '0'),
|
||||
('system', 'dns_server', 'bind'),
|
||||
('system', 'apacheglobaldiropt', ''),
|
||||
('panel', 'decimal_places', '4'),
|
||||
('panel', 'adminmail', 'admin@SERVERNAME'),
|
||||
('panel', 'phpmyadmin_url', ''),
|
||||
@@ -560,7 +561,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
||||
('panel', 'password_special_char_required', '0'),
|
||||
('panel', 'password_special_char', '!?<>§$%+#=@'),
|
||||
('panel', 'version', '0.9.36'),
|
||||
('panel', 'db_version', '201606190');
|
||||
('panel', 'db_version', '201607140');
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `panel_tasks`;
|
||||
|
||||
@@ -3385,3 +3385,12 @@ if (isDatabaseVersion('201605180')) {
|
||||
|
||||
updateToDbVersion('201606190');
|
||||
}
|
||||
|
||||
if (isDatabaseVersion('201606190')) {
|
||||
|
||||
showUpdateStep("Adding new setting for mod_php users to specify content of the global directory options file");
|
||||
Settings::AddNew("system.apacheglobaldiropt", "");
|
||||
lastStepStatus(0);
|
||||
|
||||
updateToDbVersion('201607140');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user