Compare commits

..

2 Commits

Author SHA1 Message Date
Michael Kaufmann (d00p)
9fdcd09089 fix install class, set version to 0.9.38.6
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
2017-01-15 07:44:58 +01:00
Michael Kaufmann (d00p)
338cf161d2 fix undefined index if let's encrypt is used for the froxlor-vhost
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
2017-01-14 18:06:04 +01:00
5 changed files with 10 additions and 4 deletions

View File

@@ -581,7 +581,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
('panel', 'password_special_char_required', '0'),
('panel', 'password_special_char', '!?<>§$%+#=@'),
('panel', 'customer_hide_options', ''),
('panel', 'version', '0.9.38.5'),
('panel', 'version', '0.9.38.6'),
('panel', 'db_version', '201612110');

View File

@@ -181,7 +181,7 @@ class FroxlorInstall
$this->_data['servername'] = '';
}
if (empty($this->_data['serverip'] || $this->_validate_ip($this->_data['serverip']) == false)) {
if (empty($this->_data['serverip']) || $this->_validate_ip($this->_data['serverip']) == false) {
return false;
}

View File

@@ -3579,3 +3579,9 @@ if (isFroxlorVersion('0.9.38.4')) {
showUpdateStep("Updating from 0.9.38.4 to 0.9.38.5", false);
updateToVersion('0.9.38.5');
}
if (isFroxlorVersion('0.9.38.5')) {
showUpdateStep("Updating from 0.9.38.5 to 0.9.38.6", false);
updateToVersion('0.9.38.6');
}

View File

@@ -63,7 +63,7 @@ class lescript
{
// Let's see if we have the private accountkey
$this->accountKey = $certrow['leprivatekey'];
$this->customerId = $certrow['customerid'];
$this->customerId = (!$isFroxlorVhost ? $certrow['customerid'] : null);
$this->isFroxlorVhost = $isFroxlorVhost;
$this->isLeProduction = (Settings::Get('system.letsencryptca') == 'production');

View File

@@ -16,7 +16,7 @@
*/
// Main version variable
$version = '0.9.38.5';
$version = '0.9.38.6';
// Database version (YYYYMMDDC where C is a daily counter)
$dbversion = '201612110';