From 0ed499a6d03953b2f2fa388cb665fa8c9d2a60c0 Mon Sep 17 00:00:00 2001 From: zenggang Date: Wed, 13 Apr 2022 06:48:32 +0000 Subject: [PATCH] * Fix bug#12963 --- module/execution/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/control.php b/module/execution/control.php index 27aa1e597c..3fab283d0f 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -227,7 +227,7 @@ class execution extends control $this->view->orderBy = $orderBy; $this->view->browseType = $browseType; $this->view->status = $status; - $this->view->users = $this->loadModel('user')->getPairs('noletter'); + $this->view->users = $this->loadModel('user')->getPairs('noletter|all'); $this->view->param = $param; $this->view->executionID = $executionID; $this->view->execution = $execution;