* Fix bug for used undefined variable.

This commit is contained in:
chaideqing
2024-01-04 11:03:27 +08:00
parent e4752303ce
commit 8a1f3a9415
+1 -1
View File
@@ -3542,7 +3542,7 @@ class execution extends control
}
else
{
$status = $storyType == 'story' ? 'active' : ($model == 'ipd' ? 'launched' : 'active,launched');
$status = $storyType == 'story' ? 'active' : ($object->model == 'ipd' ? 'launched' : 'active,launched');
$allStories = $this->story->getProductStories(array_keys($products), $branchIDList, $moduleID = '0', $status, $storyType, 'id_desc', $hasParent = false, '', $pager = null);
}