From 9dd161d7bebbf3be44dfc906c1dae493ea48d2d4 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 2 Nov 2023 09:54:57 +0800 Subject: [PATCH] * Change the link after create a story. --- module/story/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/story/control.php b/module/story/control.php index bd06a2a8c6..32bf399300 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -88,11 +88,11 @@ class story extends control if($this->post->newStory) { $response['message'] = $message . $this->lang->story->newStory; - $response['locate'] = $this->createLink('story', 'create', "productID=$productID&branch=$branch&moduleID=$moduleID&story=$copyStoryID&objectID=$objectID&bugID=$bugID&planID=$planID&todoID=$todoID&extra=$extra&storyType=$storyType"); + $response['load'] = $this->createLink('story', 'create', "productID=$productID&branch=$branch&moduleID=$moduleID&story=$copyStoryID&objectID=$objectID&bugID=$bugID&planID=$planID&todoID=$todoID&extra=$extra&storyType=$storyType"); return $this->send($response); } - $response['locate'] = $this->storyZen->getAfterCreateLocation((int)$productID, $branch, $objectID, $storyID, $storyType); + $response['load'] = $this->storyZen->getAfterCreateLocation((int)$productID, $branch, $objectID, $storyID, $storyType); return $this->send($response); }