How can allow users to have capital letters in their usernames? Now allows only small letters.
How can allow users to have capital letters in their usernames? Now allows only small letters.
Mike,
Modify form_validation.lib.php in lib folder, then find function IsAlphanumeric, change the first line of the function by this :
if (ereg( "^[a-zA-Z0-9]+$",$str, $regs)) {
That's all.
Sofiah