From 312d6c77b14075b89d9cd679ed13234ca45bf89b Mon Sep 17 00:00:00 2001 From: sunguangming Date: Wed, 10 Apr 2024 08:50:20 +0800 Subject: [PATCH] * Rename func. --- module/epic/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/epic/control.php b/module/epic/control.php index 499ac04bee..e310b8ccf5 100644 --- a/module/epic/control.php +++ b/module/epic/control.php @@ -98,7 +98,7 @@ class epic extends control * @access public * @return void */ - public function linkEpic(int $storyID, string $browseType = '', string $excludeStories = '', int $param = 0, int $recTotal = 0, int $recPerPage = 20, int $pageID = 1) + public function linkStories(int $storyID, string $browseType = '', string $excludeStories = '', int $param = 0, int $recTotal = 0, int $recPerPage = 20, int $pageID = 1) { echo $this->fetch('story', 'linkStories', "storyID=$storyID&browseType=$browseType&excludeStories=$excludeStories¶m=$param&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); }