* Change the params that call the getPlans method.

This commit is contained in:
tianshujie
2023-09-04 15:00:32 +08:00
parent a103480ab6
commit 240ca63c58
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -796,7 +796,7 @@ class execution extends control
$storyBugs = $this->loadModel('bug')->getStoryBugCounts($storyIdList, $executionID);
$storyCases = $this->loadModel('testcase')->getStoryCaseCounts($storyIdList);
$plans = $this->execution->getPlans($products, 'skipParent|withMainPlan|unexpired|noclosed|sortedByDate', $executionID);
$plans = $this->execution->getPlans(array_keys($products), 'skipParent|withMainPlan|unexpired|noclosed|sortedByDate', $executionID);
$allPlans = array();
if(!empty($plans))
{