Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00eb5ed87b | ||
|
|
1dc9ea6fb1 | ||
|
|
1b63936a26 | ||
|
|
4760bddfe0 | ||
|
|
03f62365b1 | ||
|
|
3c0416ac44 |
@@ -581,7 +581,7 @@ if ($page == 'overview') {
|
||||
|
||||
// path cannot be the customers docroot
|
||||
if ($path == makeCorrectDir($userinfo['documentroot'])) {
|
||||
standar_error('backupfoldercannotbedocroot');
|
||||
standard_error('backupfoldercannotbedocroot');
|
||||
}
|
||||
|
||||
$backup_dbs = isset($_POST['backup_dbs']) ? intval($_POST['backup_dbs']) : 0;
|
||||
|
||||
@@ -684,7 +684,7 @@ opcache.interned_strings_buffer'),
|
||||
('panel', 'password_special_char_required', '0'),
|
||||
('panel', 'password_special_char', '!?<>§$%+#=@'),
|
||||
('panel', 'customer_hide_options', ''),
|
||||
('panel', 'version', '0.9.40'),
|
||||
('panel', 'version', '0.9.40.1'),
|
||||
('panel', 'db_version', '201809280');
|
||||
|
||||
|
||||
|
||||
@@ -4066,3 +4066,9 @@ if (isFroxlorVersion('0.9.39.5')) {
|
||||
showUpdateStep("Updating from 0.9.39.5 to 0.9.40", false);
|
||||
updateToVersion('0.9.40');
|
||||
}
|
||||
|
||||
if (isFroxlorVersion('0.9.40')) {
|
||||
|
||||
showUpdateStep("Updating from 0.9.40 to 0.9.40.1", false);
|
||||
updateToVersion('0.9.40.1');
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ function makeCorrectDir($dir) {
|
||||
if (version_compare("5.4.6", PHP_VERSION, ">")) {
|
||||
assert('is_string($dir) && strlen($dir) > 0 /* $dir does not look like an actual folder name */');
|
||||
} else {
|
||||
assert('is_string($dir) && strlen($dir) > 0', 'Value "' . $dir .'" does not look like an actual folder name');
|
||||
assert((is_string($dir) && strlen($dir) > 0), 'Value "' . $dir .'" does not look like an actual folder name');
|
||||
}
|
||||
|
||||
$dir = trim($dir);
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
// Main version variable
|
||||
$version = '0.9.40';
|
||||
$version = '0.9.40.1';
|
||||
|
||||
// Database version (YYYYMMDDC where C is a daily counter)
|
||||
$dbversion = '201809280';
|
||||
|
||||
Reference in New Issue
Block a user