I don't know if there is allready a better fix for rdf feeds, but here is mine:
I used the fix from garrynewman
https://vborg.vbsupport.ru/showpost....&postcount=306
open class_ffrss.php
add at the top
Code:
require_once(DIR . '/includes/class_core.php');
find
Code:
$this->XML_Parse =& new XMLparser(false, $vbulletin->GPC['feed_location']);
comment it out and add this
Code:
//##### START MODIFICATION #####
$rss = @file_get_contents($vbulletin->GPC['feed_location']);
$searchresult = strpos($rss,'</rdf:RDF>');
if($searchresult !== false)
{
$rss = str_replace( "</channel>", "", $rss );
$rss = str_replace( "</rdf:RDF>", "</channel>\n</rdf:RDF>", $rss );
$rss = str_replace( "content:encoded", "content", $rss );
}
$this->XML_Parse =& new XMLparser($rss);
//##### END MODIFICATION #####