Remove lower casing for LDAP array re: #3910

This commit is contained in:
snipe 2017-08-31 11:00:08 -07:00
parent 8d2c229bc3
commit bb8583eb14

View file

@ -110,7 +110,7 @@ class Ldap extends Model
return false;
}
if (!$user = array_change_key_case(ldap_get_attributes($connection, $entry), CASE_LOWER)) {
if (!$user = ldap_get_attributes($connection, $entry)) {
return false;
}