Quote:
Originally Posted by Wachtmeister
There is a slight problem with HTML Descriptions for forums.
|
Quote:
Originally Posted by KW802
OOohh.... I need to strip HTML tags from the forum descriptions.
|
Wachtmeister, I'll update the attachment later tonight to version 1.0.2 but for now modify the cv_rss_feeds.php file and around line 139 find...
Code:
$forum_desc = $forum['description'];
... and change it to:
Code:
$forum_desc = strip_tags($forum['description']);
Quote:
Originally Posted by JD45
very nice, woked flawlessly ... thank you
|