From: toyomoyo Date: Tue, 6 Nov 2007 01:01:09 +0000 (+0000) Subject: MDL-10509, LDAP username to be always in lowercase X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3ddcc29e6244490efbb5f1f9f5c648fa62c3248d;p=moodle.git MDL-10509, LDAP username to be always in lowercase --- diff --git a/auth/ldap/auth.php b/auth/ldap/auth.php index 156f7a043e..384157d75c 100644 --- a/auth/ldap/auth.php +++ b/auth/ldap/auth.php @@ -569,7 +569,8 @@ class auth_plugin_ldap extends auth_plugin_base { do { $value = ldap_get_values_len($ldapconnection, $entry, $this->config->user_attribute); $value = $textlib->convert($value[0], $this->config->ldapencoding, 'utf-8'); - array_push($fresult, $value); + // usernames are __always__ lowercase. + array_push($fresult, moodle_strtolower($value)); if (count($fresult) >= $bulk_insert_records) { $this->ldap_bulk_insert($fresult, $temptable); $fresult = array();