* Use function processStatus to get status of a testcase.

This commit is contained in:
liugang
2019-07-30 13:12:27 +08:00
parent fc77a1c39e
commit 884f0c1ecc
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
<td class='text-left' title="<?php echo $bug->title?>"><?php echo $bug->title;?></td>
<td><span class='<?php echo 'pri' . zget($lang->bug->priList, $bug->pri, $bug->pri)?>'><?php echo $bug->pri == '0' ? '' : zget($lang->bug->priList, $bug->pri, $bug->pri);?></span></td>
<td><?php echo $lang->bug->typeList[$bug->type];?></td>
<td><?php echo $lang->bug->statusList[$bug->status];?></td>
<td><?php echo $this->processStatus('bug', $bug);?></td>
<td><?php echo zget($users, $bug->assignedTo, $bug->assignedTo);?></td>
<td><?php echo zget($users, $bug->resolvedBy, $bug->resolvedBy);?></td>
<td><?php echo $lang->bug->resolutionList[$bug->resolution];?></td>