From 0e67199877ba401563bc90bfbd7076e12d5d1f69 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Fri, 26 Jul 2024 02:58:15 +0000 Subject: [PATCH] * [bug#53122,done,0.5h] fix notify bug. --- module/epic/model.php | 2 +- module/requirement/model.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/epic/model.php b/module/epic/model.php index d315d6e07d..98e235a868 100644 --- a/module/epic/model.php +++ b/module/epic/model.php @@ -10,6 +10,6 @@ class epicModel extends model public function getToAndCcList(object $story, string $actionType) { - $this->loadModel('story')->getToAndCcList($story, $actionType); + return $this->loadModel('story')->getToAndCcList($story, $actionType); } } diff --git a/module/requirement/model.php b/module/requirement/model.php index 88fd8bee55..bcd7558ae0 100644 --- a/module/requirement/model.php +++ b/module/requirement/model.php @@ -10,6 +10,6 @@ class requirementModel extends model public function getToAndCcList(object $story, string $actionType) { - $this->loadModel('story')->getToAndCcList($story, $actionType); + return $this->loadModel('story')->getToAndCcList($story, $actionType); } }