From e74a4184058d2639c7806beaff0d83474980521c Mon Sep 17 00:00:00 2001 From: Florian Aders Date: Sun, 31 Jan 2016 12:13:15 +0100 Subject: [PATCH] Fixed description Signed-off-by: Florian Aders --- .../updates/froxlor/0.9/update_0.9.inc.php | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) 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 fef33c39..e39aa908 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -3032,17 +3032,17 @@ if (isFroxlorVersion('0.9.34.2')) { Database::query("ALTER TABLE `".TABLE_PANEL_DOMAINS."` ADD `letsencrypt` TINYINT(1) NOT NULL DEFAULT '0' AFTER `ismainbutsubto`;"); Settings::AddNew("system.leprivatekey", 'unset'); Settings::AddNew("system.lepublickey", 'unset'); - showUpdateStep("Adding new cron-module for web- and traffic-reporting"); - $stmt = Database::prepare(" - INSERT INTO `" . TABLE_PANEL_CRONRUNS . "` SET - `module` = 'froxlor/letsencrypt', - `cronfile` = 'letsencrypt', - `interval` = '5 MINUTE', - `desc_lng_key` = 'cron_letsencrypt', - `lastrun` = DATE_SUB(NOW(), INTERVAL 5 MINUTE), - `isactive` = 1" - ); - Database::pexecute($stmt); + showUpdateStep("Adding new cron-module for Let's encrypt"); + $stmt = Database::prepare(" + INSERT INTO `" . TABLE_PANEL_CRONRUNS . "` SET + `module` = 'froxlor/letsencrypt', + `cronfile` = 'letsencrypt', + `interval` = '5 MINUTE', + `desc_lng_key` = 'cron_letsencrypt', + `lastrun` = DATE_SUB(NOW(), INTERVAL 5 MINUTE), + `isactive` = 1" + ); + Database::pexecute($stmt); lastStepStatus(0); updateToVersion('0.9.35-dev1');