NTLDR |
10-26-2002 08:15 PM |
Quote:
Originally posted by Buddha
they appear as text.
|
Try changing:
PHP Code:
$newstext=censortext(bbcodeparse($news[pagetext],0,1));
To:
PHP Code:
$newstext=censortext(bbcodeparse($news[pagetext]));
Or if that doesn't work (or if this one results in less queries):
PHP Code:
$newstext=censortext(bbcodeparse($news[pagetext],$newsforum,1));
The last option is what vBindex v2.0.1 used so that will work, the first option may use less queries and work correctly.
I've double checked on a fresh vB 2.2.8 and vBindex v2.1 Final install and smilies work fine for me with the origional code.
|