Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.8, 1.9
-
Fix Version/s: DEV backlog
-
Component/s: Authentication
-
Labels:
-
Environment:Moodle 1.8
-
Database:MySQL
-
Affected Branches:MOODLE_18_STABLE, MOODLE_19_STABLE
Description
The forcing of lowercase letters in the username has just cropped up in 1.8. Previous versions allowed uppercase letters in the username. Is there a reason for this change? This can cause problems with external authentication for databases, SIS, LDAP and HRMS. This is a major change and there is no documentation on this.
Maybe I missed something?!
no, AFAIK it was this way in 1.7 too - each submitted username is lowercased in login/index.php
$frm->username = trim(moodle_strtolower($frm->username));
and the user edit script was doing the same