Run the following query:
UPDATE faqentries SET dohtml=1;
If that doesn't fix it, what you can do is change this:
PHP Code:
$entry[text] = bbcodeparse2($entry[text],$entry[dohtml],$entry[dobbcode],$entry[dosmilies],$entry[dobbcode]);
to this:
PHP Code:
$entry[text] = bbcodeparse2($entry[text],1,$entry[dobbcode],$entry[dosmilies],$entry[dobbcode]);
That solved it for me. Turns out that changing it do bbcodeparse() only made it SEEM to work, on some browsers. IE 5 loaded it fine, everything else didn't.