diff --git a/Application/Home/Controller/PromoteController.class.php b/Application/Home/Controller/PromoteController.class.php index 013076bba..86764e041 100644 --- a/Application/Home/Controller/PromoteController.class.php +++ b/Application/Home/Controller/PromoteController.class.php @@ -1884,8 +1884,14 @@ class PromoteController extends BaseController $model = new PromoteApi(); $res = $model->verify_er_User(PID, $securityCode);//验证安全密码 if ($_POST) { - $save['child_game_permission'] = I('post.child_game_permission'); + if (!$res) { + $data['status'] = 0; + $data['msg'] = '权限异常'; + $this->ajaxReturn($data); + } + + $save['child_game_permission'] = I('post.child_game_permission'); $saveRes = D('Promote')->where(array('id' => PID))->save($save); if ($saveRes === false) { $data['status'] = 0;