From 53ebd44732b25ab97a4163a59fbd1b7834f0dbd9 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Tue, 25 Oct 2022 08:47:02 +0800 Subject: [PATCH] * Fix bug #28878. --- module/build/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/build/control.php b/module/build/control.php index 182eace820..881209923f 100644 --- a/module/build/control.php +++ b/module/build/control.php @@ -287,7 +287,7 @@ class build extends control $this->view->canBeChanged = common::canBeChanged('build', $build); // Determines whether an object is editable. $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->view->build = $build; - $this->view->buildPairs = $this->build->getBuildPairs(0, 0, 'noempty,notrunk', $build->execution, 'execution'); + $this->view->buildPairs = $this->build->getBuildPairs(0, 'all', 'noempty,notrunk', $build->execution, 'execution'); $this->view->actions = $this->loadModel('action')->getList('build', $buildID); $this->view->link = $link; $this->view->param = $param;