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()