From 2c108bcf1640d77c2564e6e55e2d0c9746f9b625 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 3 Aug 2022 14:06:17 +0800 Subject: [PATCH] * Fix bug #25987. --- 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 d1b3a9c8f4..45f9fdd230 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -241,7 +241,7 @@ class execution extends control $this->view->moduleID = $moduleID; $this->view->moduleTree = $this->tree->getTaskTreeMenu($executionID, $productID, $startModuleID = 0, array('treeModel', 'createTaskLink'), $extra); $this->view->memberPairs = $memberPairs; - $this->view->branchGroups = $this->loadModel('branch')->getByProducts(array_keys($products), 'noempty'); + $this->view->branchGroups = $this->loadModel('branch')->getByProducts(array_keys($products)); $this->view->setModule = true; $this->view->canBeChanged = common::canModify('execution', $execution); // Determines whether an object is editable. $this->view->showBranch = $showBranch;