* bug: assign actions to assignTo page.

This commit is contained in:
liugang
2023-06-19 15:43:59 +08:00
parent abf51dcac3
commit 1822344cd0
+4 -3
View File
@@ -331,9 +331,10 @@ class bug extends control
}
/* Show the variables associated. */
$this->view->title = $this->products[$oldBug->product] . $this->lang->colon . $this->lang->bug->assignedTo;
$this->view->users = $users;
$this->view->bug = $oldBug;
$this->view->title = $this->products[$oldBug->product] . $this->lang->colon . $this->lang->bug->assignedTo;
$this->view->actions = $this->loadModel('action')->getList('bug', $bugID);
$this->view->users = $users;
$this->view->bug = $oldBug;
$this->display();
}