From 02843ee44600cc4cd2b9809de80c388ddd4d79bc Mon Sep 17 00:00:00 2001 From: chaideqing Date: Wed, 3 Jan 2024 17:21:50 +0800 Subject: [PATCH] * Fix bug #43058. --- 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 133bf7ae15..32a30dc215 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -3541,7 +3541,7 @@ class execution extends control } else { - $status = $storyType == 'story' ? 'active' : 'launched'; + $status = $storyType == 'story' ? 'active' : ($model == 'ipd' ? 'launched' : 'active,launched'); $allStories = $this->story->getProductStories(array_keys($products), $branchIDList, $moduleID = '0', $status, $storyType, 'id_desc', $hasParent = false, '', $pager = null); }