Merge branch 'master' into zenops_44

This commit is contained in:
caoyanyi
2022-08-30 16:39:58 +08:00
102 changed files with 2363 additions and 1519 deletions
+2 -3
View File
@@ -299,14 +299,13 @@
<th><?php echo $lang->task->mailto;?></th>
<td>
<?php
$mailto = explode(',', str_replace(' ', '', $task->mailto));
if(empty($mailto))
if(empty($task->mailto))
{
echo $lang->noData;
}
else
{
foreach($mailto as $account) echo ' ' . zget($users, $account, $account);
foreach(explode(',', str_replace(' ', '', $task->mailto)) as $account) echo ' ' . zget($users, $account, $account);
}
?>
</td>