From 1822344cd05b213fe8808ce116ee2d3f2f897c09 Mon Sep 17 00:00:00 2001 From: liugang Date: Mon, 19 Jun 2023 15:43:59 +0800 Subject: [PATCH] * bug: assign actions to assignTo page. --- module/bug/control.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/module/bug/control.php b/module/bug/control.php index f71fec7201..5b8d05622a 100755 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -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(); }