From 9395a2f234dccd31fb0d6b854e7e9db076b1b8bf Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 4 Sep 2024 14:14:33 +0800 Subject: [PATCH] * [bug#54444,done,0.5h] separate the list with `,`. --- module/message/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/message/model.php b/module/message/model.php index e8d6848778..e0ad42e050 100755 --- a/module/message/model.php +++ b/module/message/model.php @@ -260,7 +260,7 @@ class messageModel extends model { $action = $this->loadModel('action')->getById($actionID); list($toList, $ccList) = $this->loadModel($objectType)->getToAndCcList($object, $action->action); - $toList = $toList . $ccList; + $toList = $toList . ',' . $ccList; } if($objectType == 'testtask')