mirror of
https://github.com/YunoHost-Apps/dotclear2_ynh.git
synced 2024-09-03 18:26:29 +02:00
lowercase $user_id in ldap auth
This commit is contained in:
parent
bb5f34686a
commit
f2b7228a4a
1 changed files with 3 additions and 0 deletions
|
@ -22,6 +22,9 @@ class ldapDcAuth extends dcAuth
|
|||
ldap_set_option ($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
|
||||
if (ldap_bind($ds, "uid=".$user_id.",ou=users,".$this->base, $pwd))
|
||||
{
|
||||
# user_id needs to be in lowercase here
|
||||
$user_id = strtolower($user_id);
|
||||
|
||||
# search the user in ldap, and get infos
|
||||
$filter = "(&(|(objectclass=posixAccount))(uid=".$user_id.")(permission=cn=__APP__.admin,ou=permission,".$this->base."))";
|
||||
$sr = ldap_search($ds, $this->base, $filter, array("dn", "cn", "sn", "mail", "givenname")); # /!\ fields have to be in lowercase
|
||||
|
|
Loading…
Reference in a new issue