1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-12-27 13:39:19 -05:00

#1124 lower_name of LDAP user not assigned

This commit is contained in:
Unknwon 2015-03-23 10:51:43 -04:00
parent 2bb982dada
commit 484175f702

View file

@ -242,6 +242,7 @@ func LoginUserLdapSource(u *User, name, passwd string, sourceId int64, cfg *LDAP
}
u = &User{
LowerName: strings.ToLower(name),
Name: name,
FullName: fn + " " + sn,
LoginType: LDAP,