From e8b085129bbf41f0712800f914c8b18e72d5ebe6 Mon Sep 17 00:00:00 2001 From: Zongjun Lan Date: Thu, 24 Feb 2022 11:19:38 +0800 Subject: [PATCH] * Fix bug #19903 --- module/doc/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/doc/control.php b/module/doc/control.php index 3fcdebb6f2..5bc5930f08 100644 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -167,7 +167,7 @@ class doc extends control if(empty($executions)) unset($libTypeList['execution']); $this->view->groups = $this->loadModel('group')->getPairs(); - $this->view->users = $this->user->getPairs('nocode'); + $this->view->users = $this->user->getPairs('nocode|noclosed'); $this->view->products = $products; $this->view->projects = $projects; $this->view->executions = $executions;