* [bug#54444,done,0.5h] separate the list with ,.

This commit is contained in:
liumengyi
2024-09-06 09:06:59 +08:00
committed by 曹延义
parent 7d2a871b57
commit 9395a2f234
+1 -1
View File
@@ -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')