Added changes to fix ldap login

This commit is contained in:
Arturo Gonzalez 2017-11-10 09:33:12 +01:00
parent 680d23038e
commit fe4a93f646
1 changed files with 2 additions and 2 deletions

View File

@ -693,10 +693,10 @@ function ldap_process_user_login ($login, $password) {
} }
} }
$dc = $config["ldap_base_dn"]; $dc = io_safe_output($config["ldap_base_dn"]);
#Search group of this user it belong. #Search group of this user it belong.
$filter="(" . $config['ldap_login_attr'] . io_safe_output($login) . ")"; $filter="(" . $config['ldap_login_attr'] . "=" . io_safe_output($login) . ")";
$justthese = array("objectclass=group"); $justthese = array("objectclass=group");
$sr = ldap_search($ds, $dc, $filter, $justthese); $sr = ldap_search($ds, $dc, $filter, $justthese);