This is still a problem, and what was said above does not fix it.
The problem lies here, I believe:
Code:
// get rid of stray <br> tags in the code - upsets older browsers (IE 4.7
$codebits=explode("</normalfont><pre><smallfont>code:</smallfont></normal
list($key,$bbcode)=each($codebits);
$bbcode=nl2br($bbcode);
while (list($key,$val)=each($codebits)) {
$sbbits=explode("</blockquote><hr></pre><normalfont>",$val);
$newbits=$sbbits[0]."</blockquote><hr></pre><normalfont>".nl2br($sbbits
$bbcode.="</normalfont><pre><smallfont>code:</smallfont></normalfont><h
}
When in <pre>, we should not be adding br codes.
-ChadG