From 856afd0b76ce1d4e4145517580bc987e43970cb3 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Sun, 21 Nov 2021 02:23:33 +0800 Subject: [PATCH] * Fix bug#16471. --- 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 403016698c..7b24c4b01e 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -3070,7 +3070,7 @@ class executionModel extends model foreach($products as $product) { $productModules = $this->loadModel('tree')->getOptionMenu($product->id); - $productBuilds = $this->loadModel('build')->getProductBuildPairs($product->id, 0, $params = 'noempty|notrunk|withbranch'); + $productBuilds = $this->loadModel('build')->getProductBuildPairs($product->id, 'all', $params = 'noempty|notrunk|withbranch'); foreach($productModules as $moduleID => $moduleName) { $modules[$moduleID] = ((count($products) >= 2 and $moduleID) ? $product->name : '') . $moduleName;