* adjust for delete estimate.

This commit is contained in:
wangyidong
2022-08-26 22:14:53 +08:00
parent f95bca8e7a
commit 11c3ef03cc
5 changed files with 23 additions and 18 deletions
+1 -1
View File
@@ -262,7 +262,7 @@
<th><?php echo $lang->task->assignedTo;?></th>
<td>
<?php
if(!empty($task->team) and $task->mode == 'multi' and $task->status != 'closed')
if(!empty($task->team) and $task->mode == 'multi' and strpos('done,cencel,closed', $task->status) === false)
{
foreach($task->team as $member) echo ' ' . zget($users, $member->account);
}