* adjust for task #67404.

This commit is contained in:
wangyidong
2022-09-02 16:20:15 +08:00
parent f1ce6c51a6
commit c94a577c96
9 changed files with 197 additions and 53 deletions
+1 -1
View File
@@ -1181,9 +1181,9 @@ class task extends control
$orderBy = 'date,id';
if(!empty($task->team) and $task->mode == 'linear') $orderBy = 'order,date,id';
$this->view->title = $this->lang->task->record;
$this->view->task = $task;
$this->view->estimates = $this->task->getTaskEstimate($taskID, '', '', $orderBy);
$this->view->title = $this->lang->task->record;
$this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter');
$this->display();
}