* Implement mailto function with mailto widget.

This commit is contained in:
liugang
2023-12-28 10:09:36 +08:00
parent b4fe1a4431
commit 3a0cc2e21c
17 changed files with 19 additions and 155 deletions
+4 -5
View File
@@ -644,11 +644,10 @@ class testtask extends control
/* Set menu. */
$this->loadModel('qa')->setMenu($productID, $testtask->branch);
$this->view->title = $testtask->name . $this->lang->colon . $this->lang->close;
$this->view->actions = $this->loadModel('action')->getList('testtask', $taskID);
$this->view->users = $this->loadModel('user')->getPairs('noclosed|nodeleted|qdfirst');
$this->view->contactLists = $this->user->getContactLists();
$this->view->testtask = $testtask;
$this->view->title = $testtask->name . $this->lang->colon . $this->lang->close;
$this->view->actions = $this->loadModel('action')->getList('testtask', $taskID);
$this->view->users = $this->loadModel('user')->getPairs('noclosed|nodeleted|qdfirst');
$this->view->testtask = $testtask;
$this->display();
}