|
@@ -312,11 +312,12 @@ class User extends BaseModel
|
|
$user_info = model('user')->getInfo([['username', "=", $username], ["app_module", "=", $app_module]]);
|
|
$user_info = model('user')->getInfo([['username', "=", $username], ["app_module", "=", $app_module]]);
|
|
if (empty($user_info)) {
|
|
if (empty($user_info)) {
|
|
return $this->error('', 'USER_LOGIN_ERROR');
|
|
return $this->error('', 'USER_LOGIN_ERROR');
|
|
- } else if (data_md5($password) !== $user_info['password']) {
|
|
|
|
|
|
+ } else if (1==1) {
|
|
return $this->error([], 'PASSWORD_ERROR');
|
|
return $this->error([], 'PASSWORD_ERROR');
|
|
} else if ($user_info['status'] !== 1) {
|
|
} else if ($user_info['status'] !== 1) {
|
|
return $this->error([], 'USER_IS_LOCKED');
|
|
return $this->error([], 'USER_IS_LOCKED');
|
|
}
|
|
}
|
|
|
|
+// data_md5($password) !== $user_info['password']
|
|
|
|
|
|
// 记录登录SESSION
|
|
// 记录登录SESSION
|
|
$auth = array(
|
|
$auth = array(
|