diff --git a/application/common/library/Auth.php b/application/common/library/Auth.php index 7a7ddb1..7c7926c 100755 --- a/application/common/library/Auth.php +++ b/application/common/library/Auth.php @@ -182,7 +182,8 @@ class Auth $user = User::create($params, true); $this->_user = User::get($user->id); - + //清除之前所有的Token + Token::clear($user->id); //设置Token $this->_token = Random::uuid(); Token::set($this->_token, $user->id, $this->keeptime); @@ -200,7 +201,6 @@ class Auth } return true; } - /** * 用户登录 * @@ -317,7 +317,8 @@ class Auth $user->save(); $this->_user = $user; - + //清除之前所有的Token + Token::clear($user->id); $this->_token = Random::uuid(); Token::set($this->_token, $user->id, $this->keeptime);