From 8bc0455d368e3c5fa57bba551d8bf21c3ea625ed Mon Sep 17 00:00:00 2001 From: daitingting Date: Fri, 18 Nov 2022 03:21:58 +0000 Subject: [PATCH] * Fix bug #29948. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index 129b2aa23c..bf28b17f4c 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -5091,7 +5091,7 @@ class executionModel extends model $this->config->execution->all->search['actionURL'] = $actionURL; $projectPairs = array(0 => ''); - $projectPairs += $this->loadModel('project')->getPairsByProgram(); + $projectPairs += $this->loadModel('project')->getPairsByProgram('', 'all', false, 'order_asc', '', '', 'multiple'); $this->config->execution->all->search['params']['project']['values'] = $projectPairs + array('all' => $this->lang->execution->allProject); $this->loadModel('search')->setSearchParams($this->config->execution->all->search);