From 83cfb2d2b04374d867ac65729c8ff87178c06766 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Wed, 11 Oct 2023 10:14:15 +0800 Subject: [PATCH] * Fix bug #39353. --- 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 ab5846189f..b0e52ee35e 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -4101,7 +4101,7 @@ class execution extends control $this->view->productID = $productID; $this->view->pager = $pager; $this->view->orderBy = $orderBy; - $this->view->users = $this->loadModel('user')->getPairs('noletter', '', 0, array_unique(helper::arrayColumn($executionStats, 'PM'))); + $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->view->projects = array('') + $this->project->getPairsByProgram(); $this->view->status = $status; $this->view->from = $from;