merge heihedata branch r4153

This commit is contained in:
wlx 2013-12-27 02:12:27 +00:00
parent 60432a9987
commit ee4d32a372
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ class LoginOperate implements \Users\Event\LoginEvent
if(!empty($data['username'])) if(!empty($data['username']))
{ {
if(!preg_match("/^[a-zA-Z][a-zA-Z0-9_]{2,15}$/",$data['username'])) if(mb_strlen($data['username'])<2)
{ {
return array('error'=>"用户名应当以字母开头由字母数字和下划线组成并且长度在3到25个字符之间",'place'=>'username'); return array('error'=>"用户名长度应该大于两个字符",'place'=>'username');
} }
} }