Fixed get_email_array_from_ldap_attr 2nd parameter error

This commit is contained in:
Alexander Noack
2021-04-15 12:50:41 +02:00
parent af38efc4d0
commit fbc19e6262
2 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ class ModelGroupGroup extends Model {
$query = $ldap->query(LDAP_BASE_DN, "(&(objectClass=" . LDAP_ACCOUNT_OBJECTCLASS . ")(" . LDAP_MAIL_ATTR . "=" . $username_prefix . $s . "*))", array());
if(isset($query->rows)) {
$emails = $this->model_user_auth->get_email_array_from_ldap_attr($query->rows);
$emails = $this->model_user_auth->get_email_array_from_ldap_attr($query->rows, LDAP_DISTRIBUTIONLIST_OBJECTCLASS);
}
}
}