We're having a problem while generating a feed for some content that contains the '&' character in the title. The feed becomes invalid. Shouldn't the title be within CDATA tags? For now, we've managed to find a quick fix, editing the ascx file and adding the following snippet to the OnPreRender event of the Items literal, to remove the '&':
Problems with '&' character on title
Hi
We're having a problem while generating a feed for some content that contains the '&' character in the title. The feed becomes invalid. Shouldn't the title be within CDATA tags? For now, we've managed to find a quick fix, editing the ascx file and adding the following snippet to the OnPreRender event of the Items literal, to remove the '&':
<script runat="server">
protected void EscapeCharacters(object sender, EventArgs e){
Items.Text = Items.Text.Replace("&", "");
}
</script>
Thanks
Thanks for reporting this. The problem was actually present in two other properties as well :-)
This is now fixed in the 2.2.1 version.
is working on a reply...