From 164f8e7fbdb4f78703d330d701e2bf1a4090b59d Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 6 Jun 2022 17:19:14 +0800 Subject: [PATCH] 1 --- webapp/controller/MissionController.class.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/webapp/controller/MissionController.class.php b/webapp/controller/MissionController.class.php index 3cd1f0bf..c2d16370 100644 --- a/webapp/controller/MissionController.class.php +++ b/webapp/controller/MissionController.class.php @@ -243,19 +243,25 @@ class MissionController extends BaseAuthedController { public function sendOfferRewardMission() { $missionId = getReqVal('mission_id', 0); - $this->missionService->sendOfferRewardMission($missionId, $this->propertyChgService); + $this->missionService->sendOfferRewardMission( + $missionId, + $this->propertyChgService); } public function offerRewardMissionPreview() { $missionId = getReqVal('mission_id', 0); - $this->missionService->offerRewardMissionPreview($missionId, $this->propertyChgService); + $this->missionService->offerRewardMissionPreview( + $missionId, + $this->propertyChgService); } public function cancelOfferRewardMission() { $missionId = getReqVal('mission_id', 0); - $this->missionService->cancelOfferRewardMission($missionId, $this->propertyChgService); + $this->missionService->cancelOfferRewardMission( + $missionId, + $this->propertyChgService); } public function boostOfferRewardMission()