From 65fd6ac191acbcc033aac34465b62cb896cf0f5c Mon Sep 17 00:00:00 2001 From: Daniel Reichelt Date: Tue, 8 Mar 2016 08:20:41 +0100 Subject: [PATCH] fix wrong column name in latest DB update, fixes #1602 --- install/updates/froxlor/0.9/update_0.9.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/updates/froxlor/0.9/update_0.9.inc.php b/install/updates/froxlor/0.9/update_0.9.inc.php index c99f9aa5..49aece4e 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -3158,7 +3158,7 @@ if (isFroxlorVersion('0.9.35-rc1')) { showUpdateStep("Adding new setting to enable/disable Let's Encrypt"); $enable_letsencrypt = isset($_POST['enable_letsencrypt']) ? (int)$_POST['enable_letsencrypt'] : "1"; Settings::AddNew("system.leenabled", $enable_letsencrypt); - Database::query("UPDATE `".TABLE_PANEL_CRONRUNS."` SET `active` = '".$enable_letsencrypt."' WHERE `cronfile` = 'letsencrypt'"); + Database::query("UPDATE `".TABLE_PANEL_CRONRUNS."` SET `isactive` = '".$enable_letsencrypt."' WHERE `cronfile` = 'letsencrypt'"); lastStepStatus(0); }