From 2dc09d577c323dd49b4ae4044eb8a2f176bf4356 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Wed, 8 Nov 2023 13:21:05 +0800 Subject: [PATCH] * Fix bug #40297. --- 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 85bc879cd8..59fa4bc8b4 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -998,7 +998,7 @@ class execution extends control $this->view->title = $this->app->tab == 'execution' ? $this->lang->execution->createExec : $this->lang->execution->create; $this->view->gobackLink = (isset($output['from']) and $output['from'] == 'global') ? $this->createLink('execution', 'all') : ''; $this->view->allProducts = array_filter($this->executionZen->getAllProductsForCreate($project)); - $this->view->allProjects = $this->project->getPairsByModel('scrum,agileplus,waterfall,waterfallplus,kanban', 'noclosed,multiple'); + $this->view->allProjects = $this->project->getPairsByModel('all', 'noclosed,multiple'); $this->view->multiBranchProducts = $this->loadModel('product')->getMultiBranchPairs(); $this->view->products = $products; $this->view->teams = $this->execution->getCanCopyObjects($projectID);