From 37a87a6682fc1b98b849c3c7aff40d9ef0de11d8 Mon Sep 17 00:00:00 2001 From: wangxuepeng Date: Tue, 7 Mar 2023 00:50:14 +0000 Subject: [PATCH 1/2] Fix bug #86289. --- module/execution/control.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/execution/control.php b/module/execution/control.php index 0c473b3597..f8da167db9 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -126,6 +126,8 @@ class execution extends control if(!isset($_SESSION['limitedExecutions'])) $this->execution->getLimitedExecution(); + if($executionID) $this->session->set("storyList",$this->createLink("execution","story","&executionID=".$executionID)); + /* Set browse type. */ $browseType = strtolower($status); From 01481058b264dac65de983f671ddeb2898575792 Mon Sep 17 00:00:00 2001 From: wangxuepeng Date: Wed, 8 Mar 2023 02:40:26 +0000 Subject: [PATCH 2/2] Fix bug #86289. --- 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 f8da167db9..bbce386b3f 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -126,7 +126,7 @@ class execution extends control if(!isset($_SESSION['limitedExecutions'])) $this->execution->getLimitedExecution(); - if($executionID) $this->session->set("storyList",$this->createLink("execution","story","&executionID=".$executionID)); + if($executionID) $this->session->set("storyList", $this->createLink("execution", "story", "&executionID=" . $executionID)); /* Set browse type. */ $browseType = strtolower($status);