added new setting for domain validation, fixes #718

Signed-off-by: Christoph Burchert (Chb) <derchb@froxlor.org>
This commit is contained in:
Christoph Burchert (Chb)
2011-04-16 15:13:43 +02:00
parent 5c980946a9
commit 7491442a25
6 changed files with 24 additions and 1 deletions

View File

@@ -1490,3 +1490,14 @@ if(isFroxlorVersion('0.9.18.1'))
updateToVersion('0.9.19');
}
if(isFroxlorVersion('0.9.19'))
{
showUpdateStep("Updating from 0.9.19 to 0.9.20");
lastStepStatus(0);
showUpdateStep("Adding new setting for domain validation");
$db->query("INSERT INTO `" . TABLE_PANEL_SETTINGS . "` (`settinggroup`, `varname`, `value`) VALUES ('system', 'validate_domain', '1')");
updateToVersion('0.9.20');
}