* Merge 18.9 testtask module.

This commit is contained in:
hufangzhou
2023-11-29 16:22:34 +08:00
parent d5e597a5d4
commit 7ab268bb9c
13 changed files with 104 additions and 6 deletions
+1 -1
View File
@@ -1633,7 +1633,7 @@ class testtaskModel extends model
public function getToAndCcList(object $testtask): false|array
{
/* Set toList and ccList. */
$toList = zget($testtask, 'owner', '');
$toList = zget($testtask, 'owner', '') . ',' . zget($testtask, 'members', '') . ',';
$ccList = str_replace(' ', '', trim(zget($testtask, 'mailto', ''), ','));
if(empty($toList))