Ok, this is a really odd one, I have a news feed that I need to incorporate into a site using the Magpie plug-in. All seems good but on closer inspection I’ve realised that Magpie is stripping the ampersands from the {link} which obviously makes the URLs all but useless.
I’m using a feed which I’ve created with Feedburner (because of other issues) and the data in the actual feed appears to be fine:
http://feeds2.feedburner.com/haslams-living-reading-news
However the “&” in the link nodes vanishes when Magpie parses the feed. :? My template snippet is as follows:
{exp:magpie url="http://feeds.feedburner.com/haslams-living-reading-news" limit="3" refresh="0"}
{items}
<h3><a href="http://{link}">{title}</a></h3>
<p>{description}<br />
{/items}<br />
{/exp:magpie}So when Magpie outputs the feed content I end up with a URL that reads:
<a href="http://www.livingreading.co.uk/index.php?cID=121cType=news">http://www.livingreading.co.uk/index.php?cID=121cType=news</a>Instead of:
<a href="http://www.livingreading.co.uk/index.php?cID=121&cType=news">http://www.livingreading.co.uk/index.php?cID=121&cType=news</a>Any ideas???