From dd64dcb3f88aba4ea0e4c2ea6df2dc5d45ffffd7 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Tue, 26 Sep 2023 10:59:44 +0800 Subject: [PATCH] * Add the parameter for posted stories to link. --- module/story/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/control.php b/module/story/control.php index 969967e579..546b5799ee 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -1362,7 +1362,7 @@ class story extends control if($_POST) { - $this->story->linkStories($storyID); + $this->story->linkStories($storyID, $this->post->stories); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); return $this->send(array('result' => 'success', 'callback' => 'loadCurrentPage()', 'closeModal' => true));