* [bug#67655 , done] User requirements cannot be split into R & D requirements.

This commit is contained in:
liuruogu
2025-12-31 08:59:21 +00:00
parent 2c3973ad36
commit de1489b5f6
+1 -1
View File
@@ -582,7 +582,7 @@ class storyModel extends model
if(!empty($story->plan))
{
$this->updateStoryOrderOfPlan($storyID, (string)$story->plan); // Set story order in this plan.
foreach(explode(',', $story->plan) as $planID)
foreach(explode(',', (string)$story->plan) as $planID)
{
if(!$planID) continue;
$this->action->create('productplan', (int)$planID, 'linkstory', '', $storyID);