Quote:
Originally posted by NTLDR
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.
|
the first option you suggest here didn't work, however the second one did. problem is, it adds 2 querries. which is just not worth it for smilies. i'll have to see what this might be.
i wonder if it does have to do with the fact that i'm still on 2.27?