* Fix bug.

This commit is contained in:
tianshujie98
2020-12-08 08:24:20 +08:00
parent 83ed1f2423
commit bfce366ef1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -53,7 +53,7 @@
</thead>
<tbody>
<?php foreach($tasks as $task):?>
<tr class='text-center'>
<tr class='text-left'>
<td><?php echo html::a($this->createLink('task', 'view', "taskID=$task->id"), sprintf('%03d', $task->id));?></td>
<td><span class='<?php echo 'pri' . zget($lang->task->priList, $task->pri, $task->pri);?>'><?php echo $task->pri == '0' ? '' : zget($lang->task->priList, $task->pri, $task->pri)?></span></td>
<td class='text-left nobr'><?php echo html::a($this->createLink('project', 'browse', "projectid=$task->projectID"), $task->projectName);?></td>