From 764c2bec29d7583a3772eaf74862f25cee47ec27 Mon Sep 17 00:00:00 2001 From: zenggang Date: Wed, 25 May 2022 08:27:25 +0000 Subject: [PATCH] * Fix bug#22897 --- module/execution/control.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/execution/control.php b/module/execution/control.php index 629c8af8f0..dd82569951 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1348,6 +1348,8 @@ class execution extends control if(!empty($projectID) and $project->model == 'kanban' and $this->app->tab == 'project') return $this->send(array('result' => 'success', 'locate' => $this->createLink('project', 'index', "projectID=$projectID"))); if(!empty($projectID) and $project->model == 'kanban') return $this->send(array('result' => 'success', 'locate' => inlink('kanban', "executionID=$executionID"))); + $this->execution->setMenu($executionID); // Fix bug #22897. + $this->view->title = $this->lang->execution->tips; $this->view->tips = $this->fetch('execution', 'tips', "executionID=$executionID"); $this->view->executionID = $executionID;