| 改动版本: ecshop 2.7.0 改动程序: /includes/modules/integrates/integrate.php 改动代码:145—162行的用户登陆函数.如下 function login($username, $password) { if ($this->check_user($username, $password) > 0) { if ($this->need_sync) { $this->sync($username,$password); } $this->set_session($username); $this->set_cookie($username); return true; } else { return false; } } 改为 function login($username, $password) { if(is_email($username)) { if ($this->need_sync) { $this->sync($username,$password); } $this->set_session($username); $this->set_cookie($username); return true; } else { return false; } } |

1 评论