From 3dc3e3775c2e2a5f15a30914051a9d1677119030 Mon Sep 17 00:00:00 2001 From: hujiabin Date: Thu, 23 Mar 2023 17:47:46 +0800 Subject: [PATCH] 1 --- webapp/controller/BattleController.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/controller/BattleController.class.php b/webapp/controller/BattleController.class.php index 04272099..da451872 100644 --- a/webapp/controller/BattleController.class.php +++ b/webapp/controller/BattleController.class.php @@ -395,11 +395,11 @@ class BattleController extends BaseAuthedController { $battleUuid = getReqVal('battle_uuid', 0); $roomUuid = getReqVal('room_uuid', 0); if ( !$battleUuid){ - $this->_rspErr(1,'param error'); + $this->_rspErr(1,'param battle_uuid error'); return; } if ( !$roomUuid){ - $this->_rspErr(1,'param error'); + $this->_rspErr(1,'param room_uuid error'); return; } $row = BattleSettlement::findTeam($battleUuid,$roomUuid);