From 2db75aa3ea4daafb90c76fa3c8f49cc59127455f Mon Sep 17 00:00:00 2001 From: kuaileWu <1432334894@qq.com> Date: Fri, 6 Sep 2024 14:35:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E5=A4=B1=E8=B4=A5=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- control/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/index.php b/control/index.php index 5a4e8be..82221c9 100644 --- a/control/index.php +++ b/control/index.php @@ -11,7 +11,7 @@ class index extends publicBase { private function _check_login() { $uid = $this->post('uid'); $token = $this->post('token'); - if (empty($uid) || empty($token)) $this->ajax_json(false, '参数错误', array('code' => CODE_LOGIN_PARAM_ERROR)); + if (empty($uid) || empty($token)) $this->ajax_json(false, '参数错误', array('code' => CODE_LOGIN_EXIPRE)); $m_user = new mUser(); $is_login = $m_user->validateToken($uid, $token);