diff --git a/webapp/controller/MatchController.class.php b/webapp/controller/MatchController.class.php index 803cee4f..6d5d4bf1 100644 --- a/webapp/controller/MatchController.class.php +++ b/webapp/controller/MatchController.class.php @@ -32,7 +32,11 @@ class MatchController extends BaseAuthedController { $this->_rspErr(1, 'The team has been disbanded'); return; } - $matchDb = $this->readCurrMatchTeam($r); + $matchOkDb = $this->readMatchOk($r, $teamUuid); + if ($matchOkDb) { + + } + $currMatchDb = $this->readCurrMatchTeam($r); $this->_rspData(array( 'team_info' => $teamDb ));