From 2c1015031359e6f2ba089e3aeb3ed0783aef19e4 Mon Sep 17 00:00:00 2001 From: Wenrui LI Date: Tue, 25 Jan 2022 13:16:10 +0800 Subject: [PATCH] * set execution custom setting per vision. --- module/custom/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/custom/control.php b/module/custom/control.php index a0b75e4fa4..4812e65684 100644 --- a/module/custom/control.php +++ b/module/custom/control.php @@ -484,7 +484,7 @@ class custom extends control { if($_POST) { - $this->loadModel('setting')->setItem('system.common.CRExecution', $this->post->execution); + $this->loadModel('setting')->setItem("system.common.CRExecution@{$this->config->vision}", $this->post->execution); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'reload')); }