hrmmmm... Correct me if im wrong. Im taking this off the top of my head. Wouldn't this fix that quote problem?
Edit newreply.php and find
PHP Code:
$posttime=vbdate($timeformat,$postinfo[dateline]);
$pagetext=htmlspecialchars($postinfo[pagetext]);
Below it put
PHP Code:
$pagetext = preg_replace("/(\[)(ugid1)(])(\r\n)*([^\"]*)(\[\/ugid1\])/siU", "" ,$pagetext);
$pagetext = preg_replace("/(\[)(ugid2)(])(\r\n)*([^\"]*)(\[\/ugid2\])/siU", "" ,$pagetext);
$pagetext = preg_replace("/(\[)(ugid3)(])(\r\n)*([^\"]*)(\[\/ugid3\])/siU", "" ,$pagetext);
$pagetext = preg_replace("/(\[)(ugid4)(])(\r\n)*([^\"]*)(\[\/ugid4\])/siU", "" ,$pagetext);
$pagetext = preg_replace("/(\[)(ugid5)(])(\r\n)*([^\"]*)(\[\/ugid5\])/siU", "" ,$pagetext);
$pagetext = preg_replace("/(\[)(ugid6)(])(\r\n)*([^\"]*)(\[\/ugid6\])/siU", "" ,$pagetext);
$pagetext = preg_replace("/(\[)(ugid7)(])(\r\n)*([^\"]*)(\[\/ugid7\])/siU", "" ,$pagetext);
And so on and so on, for each user group.
I think that may only work if its a real bbcode tag. Im not sure. I dont have access to my home pomputer so i cant try it just yet.