Let me use this as a test thread please...
PHP Code:
if (floor ($phpversionnum) < 4) {
// get rid of stray <br> tags in the code - upsets older browsers (IE 4.72 reported problems)
$codebits=explode("</normalfont><pre><smallfont>code:</smallfont></normalfont><hr><blockquote>",$bbcode);
list($key,$bbcode)=each($codebits);
while (list($key,$val)=each($codebits)) {
$sbbits=explode("</blockquote><hr></pre><normalfont>",$val);
$newbits=str_replace("<br>", "", $sbbits[0])."</blockquote><hr></pre><normalfont>".$sbbits[1];
$bbcode.="</normalfont><pre><smallfont>code:</smallfont></normalfont><hr><blockquote>".$newbits;
}
}
Code:
if (floor($phpversionnum) < 4) {
// get rid of stray <br> tags in the code - upsets older browsers (IE 4.72 reported problems)
$codebits=explode("</normalfont><pre><smallfont>code:</smallfont></normalfont><hr><blockquote>",$bbcode);
list($key,$bbcode)=each($codebits);
while (list($key,$val)=each($codebits)) {
$sbbits=explode("</blockquote><hr></pre><normalfont>",$val);
$newbits=str_replace("<br>", "", $sbbits[0])."</blockquote><hr></pre><normalfont>".$sbbits[1];
$bbcode.="</normalfont><pre><smallfont>code:</smallfont></normalfont><hr><blockquote>".$newbits;
}
}
Quote:
The quick brown fox jumped over something... I don't remember really.
|