From 928e8730aaeda94108fc18872e09572f3908e227 Mon Sep 17 00:00:00 2001 From: pengda <10266652509@qq.com> Date: Wed, 4 Sep 2024 19:00:41 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E4=BC=98=E5=8C=96?= 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 e7c630e..154a5c8 100644 --- a/control/index.php +++ b/control/index.php @@ -193,7 +193,7 @@ class index extends publicBase { $this->ajax_json(true, '登录成功', array('uid' => $user['uid'], 'identifier' => $user['identifier'], 'token' => $token)); } - public function get_user() { + public function ajax_get_user() { $uid = $this->post('uid'); $token = $this->post('token'); if (empty($uid) || empty($token)) $this->ajax_json(false, '未登录或登录已经失效', array('code' => CODE_LOGIN_EXIPRE));