Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Filipe Neves 8 posts 28 karma points
    Jun 27, 2013 @ 16:59
    Filipe Neves
    0

    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

  • Ove Andersen 435 posts 1541 karma points c-trib
    Oct 07, 2013 @ 11:46
    Ove Andersen
    0

    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.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies