+ finish the task #623.

This commit is contained in:
shiyangyangwork@yahoo.cn
2011-11-18 01:19:32 +00:00
parent 9c6396fbdc
commit 8b5247e83c
8 changed files with 82 additions and 11 deletions
+13 -1
View File
@@ -86,8 +86,20 @@
</tr>
<tr>
<th class='rowhead'><?php echo $lang->task->assignedTo;?></th>
<td><?php echo $task->assignedToRealName . $lang->at . $task->assignedDate;?>
<td><?php echo $task->assignedToRealName . $lang->at . $task->assignedDate;?></td>
</tr>
<tr>
<th>
<?php
$assignedTo = empty($task->assignedTo) ? '' : $task->assignedTo;
if(common::hasPriv('task', 'assignedTo'))
{
echo html::a("javascript:assign($task->id, \"$assignedTo\")", $lang->task->assign, '');
}
?>
</th>
<td class='assign'></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->task->type;?></th>
<td><?php echo $lang->task->typeList[$task->type];?></td>