LoOnEyToOnZ, the reason that happens is because of an html decoding bug, here's what I did to fix it:
In ./includes/RSS/rss_update.php Find:
PHP Code:
$rss_description .= "\n\n[url=" . $rss_allItems[$j][LINK] . "]View the Entire Article[/url]\n";
UNDER that ADD:
PHP Code:
$rss_description = html_entity_decode($rss_description);
$rss_title = html_entity_decode($rss_title);
That fix is running on 2 forums and seems to work well.