From 2db08abb3e4132d132ccb7fc851c076329668c3f Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Mon, 24 Apr 2023 15:48:10 +0800 Subject: [PATCH] * Modify story linked data type. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index fb92c42f96..1af6c7dbde 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -3319,7 +3319,7 @@ class executionModel extends model $data->branch = $storyList[$storyID]->branch; $data->story = $storyID; $data->version = $versions[$storyID]; - $data->order = ++$lastOrder; + $data->order = (int)++$lastOrder; $this->dao->replace(TABLE_PROJECTSTORY)->data($data)->exec(); $this->story->setStage($storyID);