Mark, what version of vB are you on? I know John had changed this in version 1.1.3b3 - although there is one nesting error:
in global.php, around line 262 (in an unhacked one), it now says:
Code:
$bbcode=str_replace("</code>\r\n","<hr></pre><normalfont></blockquote>",$bbcode);
$bbcode=str_replace("</code>","<hr></pre><normalfont></blockquote>",$bbcode);
but it should be:
Code:
$bbcode=str_replace("</code>\r\n","<hr></pre></blockquote><normalfont>",$bbcode);
$bbcode=str_replace("</code>","<hr></pre></blockquote><normalfont>",$bbcode);
(i.e. nesting error - <normalfont> should come after the closing </blockquote> and not before).
In previous versions the blockquote and pre were in different order, which was less aesthetic and added a redundent space line. But in version 1.1.3b3 John changed it, so I'm not sure why you would have that space at all
(
on edit: note that I replace [ /code ] with </code> in the above sections, because otherwise they would render as vB codes on this forum.)
[Edited by bira on 07-21-2000 at 09:57 PM]