This commit is contained in:
wangwei01 2019-08-23 20:18:05 +08:00
parent 08243371f3
commit c5e72b1bb8

View File

@ -153,10 +153,10 @@ class PassController{
}
//如果是最大等级,则返回上一级的最大值
if ($seaReward['point'] == -1) {
$seaReward = $this->getSeasonReward($id - 2);
$sum_score = $seaReward['point'];
$seaR = $this->getSeasonReward($id - 2);
$sum_score = $seaR['point'];
} else {
$sum_score = $seaReward['point'];
$sum_score = $seaR['point'];
}
$rowPass = $conn->execQueryOne('SELECT active_status, honor_status ' .
' FROM passinfo WHERE accountid=:accountid AND passid=:passid;',