* fix bug#254

This commit is contained in:
chencongzhi520@gmail.com
2011-09-17 02:23:29 +00:00
parent 61f31f7279
commit 67add5116f
+1 -1
View File
@@ -592,7 +592,7 @@ class task extends control
if(isset($users[$task->lastEditedBy])) $task->lastEditedBy = $users[$task->lastEditedBy];
$task->openedDate = substr($task->openedDate, 0, 10);
$task->assignedDate = substr($task->assignedTo, 0, 10);
$task->assignedDate = substr($task->assignedDate, 0, 10);
$task->finishedDate = substr($task->finishedDate, 0, 10);
$task->canceledDate = substr($task->canceledDate, 0, 10);
$task->closedDate = substr($task->closedDate, 0, 10);