From 37c672a2ed3bd8671e21e9788ea72945be371798 Mon Sep 17 00:00:00 2001 From: holan20180123 <56391770@qq.com> Date: Mon, 2 Nov 2020 10:08:23 +0800 Subject: [PATCH] * Fix bug #2490. --- module/bug/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/control.php b/module/bug/control.php index fd59c40942..6b0352bcfa 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -898,7 +898,7 @@ class bug extends control $this->view->title = $this->products[$bug->product] . $this->lang->colon . $this->lang->bug->assignedTo; $this->view->position[] = $this->lang->bug->assignedTo; - $this->view->users = $this->user->getPairs('nodeleted', $bug->assignedTo); + $this->view->users = $this->user->getPairs('nodeleted|nofeedback', $bug->assignedTo); $this->view->bug = $bug; $this->view->bugID = $bugID; $this->view->actions = $this->action->getList('bug', $bugID);