From 4804c795b6ba6e2cb42b68dd5b068ccffba338dc Mon Sep 17 00:00:00 2001 From: wangyidong Date: Tue, 16 May 2017 15:51:54 +0800 Subject: [PATCH] * fix bug for install. --- module/install/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/install/model.php b/module/install/model.php index 3041edec97..682ceb9c97 100644 --- a/module/install/model.php +++ b/module/install/model.php @@ -418,7 +418,7 @@ class installModel extends model /* Update cron remark by lang. */ foreach($this->lang->install->cronList as $command => $remark) { - $this->dao->update(TABLE_GROUP)->set('remark')->eq($remark)->where('command')->eq($command)->exec(); + $this->dao->update(TABLE_CRON)->set('remark')->eq($remark)->where('command')->eq($command)->exec(); } } }