New patch to allow links to your site; doesn't work very well though, since if just one link to your site is in the post, any links are allowed...
Replace (both times):
code:
if (($user_profile[8]) && ($user_profile[8] ne "$vars_misc{custom_titles}->{0}")) {
With:
code:
[qb] $sitebase = $vars_config{CGIURL};
$sitebase =~ s/http.*:////isg;
$sitebase =~ s//.*//isg;
if ($check =~ /$sitebase/i) {
$is_this_site = "1";
}
if ((($user_profile[8]) && ($user_profile[8] ne "$vars_misc{custom_titles}->{0}")) || ($is_this_site eq "1")) { [/qb]