PDA


View Full Version : HTML problem


cLord
05-16-2004, 03:38 PM
I've enabled HTML in the (admin) CMPS CP but still HTML is shown as "plain text"
Example: http://www.whoox.com (5th. news item)

cLord ;)

Brian
05-16-2004, 03:46 PM
Apparently that setting is still trying to use the vBa Homepage setting for that. If you'll open your forum/modules/news.php file and look for:

$news['message'] = parse_bbcode2($news['pagetext'], $vboptions['newshtml'], $vboptions['newsimagecode'], $allowsmilie, $vba_options['portal_news_enablevbcode']);

Replace that with:

$news['message'] = parse_bbcode2($news['pagetext'], $vba_options['portal_news_enablehtml'], $vba_options['portal_news_enablevbimage'], $allowsmilie, $vba_options['portal_news_enablevbcode']);


And that should fix the problem. :)

cLord
05-16-2004, 03:57 PM
Yep!

You did it again Brian...
Works like a charm, thanX for the fix!

cLord :)