From 544990cbb54da835c4044f3f2eec5ff2cebeaefc Mon Sep 17 00:00:00 2001 From: tianshujie Date: Mon, 25 Mar 2024 09:00:54 +0800 Subject: [PATCH] * Fix bug #47202. --- 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 cba6ae03c4..66216ebdd5 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1743,7 +1743,7 @@ class execution extends control $this->executionZen->assignTaskKanbanVars($execution); - if($this->app->tab == 'project') $this->view->projectID = $executionID; + if($this->app->tab == 'project') $this->view->projectID = $execution->project; $this->view->storyOrder = $orderBy; $this->view->orderBy = 'id_asc'; $this->view->executionID = $executionID;