From b242d1319f08d0cce2f886bdb460bf610ccfd528 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Thu, 14 Jul 2022 09:28:42 +0800 Subject: [PATCH] * Fix bug #25230. --- module/task/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/task/control.php b/module/task/control.php index 8cb9eedb1b..190d4aca13 100755 --- a/module/task/control.php +++ b/module/task/control.php @@ -408,11 +408,11 @@ class task extends control if($story) { $moduleID = $story->module; - $stories = $this->story->getExecutionStoryPairs($executionID, 0, 'all', $moduleID, 'short', 'unclosed'); + $stories = $this->story->getExecutionStoryPairs($executionID, 0, 'all', $moduleID, 'short', 'active'); } else { - $stories = $this->story->getExecutionStoryPairs($executionID, 0, 'all', 0, 'short', 'unclosed'); + $stories = $this->story->getExecutionStoryPairs($executionID, 0, 'all', 0, 'short', 'active'); } $members = $this->loadModel('user')->getTeamMemberPairs($executionID, 'execution', 'nodeleted');