1
0
Fork 0
forked from forgejo/forgejo
This commit is contained in:
Dustin Willis Webber 2015-04-16 14:36:32 -04:00
parent 639e34e362
commit f78046fc3b
2 changed files with 2 additions and 2 deletions

View file

@ -169,7 +169,7 @@ func UserSignIn(uname, passwd string) (*User, error) {
// For plain login, user must exist to reach this line.
// Now verify password.
if u.LoginType == PLAIN {
if !u.ValidtePassword(passwd) {
if !u.ValidatePassword(passwd) {
return nil, ErrUserNotExist
}
return u, nil