From 3c7bcfe8137b773cbf1a6c0a35bd621a77703c6b Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sun, 16 Sep 2007 01:59:05 +0000 Subject: [PATCH] mlanthaler: Bugfix: Since title was not escaped right, the RSS feed is invalid if there is an tag like in the title of an entry. (merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@42030 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- templates/RSSFeed.ss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/RSSFeed.ss b/templates/RSSFeed.ss index e26caf92a..e06e143e1 100755 --- a/templates/RSSFeed.ss +++ b/templates/RSSFeed.ss @@ -1,9 +1,9 @@ - $Title + $Title.XML $Link - $Description + $Description.XML <% control Entries %> @@ -14,7 +14,7 @@ <% else %>$Created.Rfc822<% end_if %> <% if Author %>$Author.XML<% end_if %> $AbsoluteLink - + <% end_control %>