View Single Post
  #78  
Old 04-03-2007, 08:01 PM
 
dsoong dsoong is offline
 

Advanced Member
  
Join Date: Jan 2007
Posts: 94
 

Default Re: Use E-mail address instead of username 3.5.x & 4.0

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.
Reply With Quote