ok for this to work in vb 3.5 rc 3 do the following in
forums/includes/class_bbcode.php
find
Code:
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
and replace it with
Code:
if ($vbulletin->userinfo['userid'])
{
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
}
else
{
return "Guests cannot view links. You must <a href='register.php'>register</a> to see links.";
}