mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-03 17:59:21 +02:00
fixed messages if user suffix is invalid
This commit is contained in:
parent
2ef09760f4
commit
0e34df01c7
1 changed files with 8 additions and 6 deletions
|
@ -113,13 +113,15 @@ class Ldap{
|
|||
// users have the attribute "posixAccount" or "sambaAccount" and uid $name
|
||||
$filter = "(&(|(objectClass=posixAccount) (objectClass=sambaAccount)) (uid=$name))";
|
||||
$attrs = array();
|
||||
$sr = ldap_search($this->server, $this->conf->get_UserSuffix(), $filter, $attrs);
|
||||
$sr = @ldap_search($this->server, $this->conf->get_UserSuffix(), $filter, $attrs);
|
||||
if ($sr) {
|
||||
$info = ldap_get_entries($this->server, $sr);
|
||||
// return only first DN entry
|
||||
$ret = $info[0]["dn"];
|
||||
ldap_free_result($sr);
|
||||
return $ret;
|
||||
}
|
||||
}
|
||||
|
||||
// returns the LDAP connection handle
|
||||
function server() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue