Quote:
Originally Posted by tpaul
the script will change the hidden "uname" variable to equal the new email address and will cause an access denied error upon submit
|
This is quick work around I have
Quote:
$email = strtolower($email);
if (!isset($uname)) $uname = strtolower($email);
|
I don't know if your code will work the same. I am trying to fix a utf-8 user name problem I having so my code has change quite a bit.