From ddc8a8f7240ab97af76973b8e6cfbc96eaf574df Mon Sep 17 00:00:00 2001 From: zhouxin Date: Tue, 22 Mar 2022 01:38:31 +0000 Subject: [PATCH] Fix bug #17415. --- 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 964df20efa..f248464ce5 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1317,7 +1317,7 @@ class execution extends control $this->view->title = $this->lang->execution->tips; $this->view->tips = $this->fetch('execution', 'tips', "executionID=$executionID"); - $this->view->defaultURL = isset($this->session->closeTipsList) ? $this->session->closeTipsList : $this->createLink('execution', 'task', 'executionID=' . $executionID); + $this->view->defaultURL = $this->session->closeTipsList ? $this->session->closeTipsList : $this->createLink('execution', 'task', 'executionID=' . $executionID); $this->view->executionID = $executionID; $this->view->projectID = $projectID; $this->view->project = $project;