It shouldn't matter if the RSS feed ends in .rss or .xml, as long as it's valid. From what I can tell the issue is the fact that HTML tags inside the .xml feed is already encoded, so when scrollerbridge.php tries to encode it then decode it at the output stage, there's still one level of encoding that needs to be reversed. Try playing with this function inside scrollerbridge.php:
Code:
function slashit($what){ //Encode text for storing in JavaScript array
$newstring=str_replace(''', '\'', $what); //replace those half valid apostrophe entities with actual apostrophes
return rawurlencode($newstring);
}
Specifically, the part in red, to handle your situation. If I have time I'll try to revist this thread to see what I can come up with. Hopefully you're familar with PHP.
Bookmarks