Hi,
Regarding username generation, is there a way to set it so that the username is all lowercase? A user can log in (case insensitive username) but the username displayed in posts is in the format of first and last initials in uppercase and the rest in lowercase.
Current output: "John" + "Smith" => "JSmith".
Desired output: "John" + "Smith" => "jsmith".
Thanks.
Comments
Comment #1
nicholasthompson+ 1 for me....
Should be quite a simple patch in the sanitize username function...
Comment #2
ambereyes commentedMake the following change in user_import.module
Katrina
--
www.ambereyes.net
Comment #3
Mel55113 commentedActually I prefer the current mode of operation, e.g. John Smith becomes JSmith. I think it's much easier to read and gives a more polished look.
Since in use the username (or email address if you use login toboggan; highly recommended) is inherently case insensitive it really doesn't matter to the user at login time.
Therefore, if you implement this request, please make it optional.
Thanks,
Mel
Comment #4
robert castelo commentedWould be fairly easy to add this but I think unnecessary.
The more options we add the more confusing the UI becomes - if someone really wants this they can add it in a custom module and use User Import's API to add the feature.