|
|
Administrator
|
Posts: 1223
Join Date: Mar 2005
|
Look in your register.php and usercp.php. There is a reg expr that checks for a valid email. It must end with 'i' to ignore case. In the very first version, it was case sensitive and the forum disallowed users with emails such as MyEmail@Domain.com
Correct code is:Code:
if (!preg_match('#^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$#i',$useremail)) $errormessage = get_error($lang['invalid_email']);
You probably have downloaded the fixed version.
|