MyBB Community Forums

Full Version: Parse error on new registration ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hmm is there a solution to this ?

\inc\datahandlers\user.php on line 73


i went to check if registration was fine but once i went to register a new nick i got this error after clicking submit after entering all the information to register ?

( normally it says submitted and check your email for verfication )

\inc\datahandlers\user.php on line 73
Try reuploading user.php.
// Fix bad characters
		$username = trim($username);
		$username = str_replace(array(unicode_chr(160), unicode_chr(173), unicode_chr(0xCA), dec_to_utf8(8238), dec_to_utf8(8237), dec_to_utf8(8203)), array(" ", "-", "", "", "", ""), $username);ay(" ", "-", "", "", ""), $username);


$username);ay(" ", "-", "", "", "") <-- thats where the error was

thanks for helping, i really apprectiate it Heart