From 0723125feaa2c2a078fda9c1942e2ec6ce781f85 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Fri, 19 May 2023 02:21:56 +0000 Subject: [PATCH] * Fix bug #35193. --- 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 9ac50e377f..ea59cf4238 100755 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -1194,7 +1194,7 @@ class bug extends control $this->view->branchTagOption = $branchTagOption; $this->view->tasks = $this->task->getExecutionTaskPairs($bug->execution); $this->view->testtasks = $this->loadModel('testtask')->getPairs($bug->product, $bug->execution, $bug->testtask); - $this->view->users = $this->user->getPairs('', "$bug->assignedTo,$bug->resolvedBy,$bug->closedBy,$bug->openedBy"); + $this->view->users = $this->user->getPairs('noclosed', "$bug->assignedTo,$bug->resolvedBy,$bug->closedBy,$bug->openedBy"); $this->view->assignedToList = $assignedToList; $this->view->cases = array('' => '') + $cases; $this->view->openedBuilds = $openedBuilds;