* Finish task #7551.

This commit is contained in:
sgm0422
2020-07-25 18:49:20 +08:00
parent 97bfc8fd50
commit deb448d2bb
2 changed files with 2 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ class project extends control
$this->view->modules = $this->tree->getTaskOptionMenu($projectID, 0, 0, $showAllModule ? 'allModule' : '');
$this->view->moduleID = $moduleID;
$this->view->moduleTree = $this->tree->getTaskTreeMenu($projectID, $productID, $startModuleID = 0, array('treeModel', 'createTaskLink'), $extra);
$this->view->memberPairs = $memberPairs + array('closed' => 'Closed');
$this->view->memberPairs = $memberPairs;
$this->view->branchGroups = $this->loadModel('branch')->getByProducts(array_keys($products), 'noempty');
$this->view->setModule = true;

View File

@@ -524,7 +524,7 @@ class task extends control
$this->view->title = $this->view->project->name . $this->lang->colon . $this->lang->task->assign;
$this->view->position[] = $this->lang->task->assign;
$this->view->task = $task;
$this->view->members = $members + array('closed' => 'Closed');
$this->view->members = $members;
$this->view->users = $this->loadModel('user')->getPairs();
$this->display();
}