webhost, make sure you have all of the following in member.php:
4. Open member.php and find
eval("\$customfields .= \"".gettemplate("register_customfields")."\";") ;
}
Right below that, add
$signature1=$bbuserinfo[signature];
$signature2=$bbuserinfo[signature];
$signature=bbcodeparse($signature1,0,$allowsmilies );
$sendsig=htmlspecialchars($signature2);
Then find
if ($email!=$emailconfirm) {
and right *ABOVE* it, add
$signature=ereg_replace('>', '>', $signature);
$signature=ereg_replace('<', '<', $signature);
$signature=ereg_replace('"', "\"", $signature);
$signature=ereg_replace('&', '&', $signature);
That's the only reason I can see it would work for me and not for you.
DarkReaper: It parses fine for me on the profile screen. Have you made *all* of the changes noted in the install.txt file?
|