From a0ce191a5278343ec37c44c176d33db26311f5ea Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 21 Apr 2011 23:32:21 +0200 Subject: [PATCH] Fix invalid RSS encoding. --- www/templates/rss.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/templates/rss.xml b/www/templates/rss.xml index d4809bff..67115358 100644 --- a/www/templates/rss.xml +++ b/www/templates/rss.xml @@ -9,7 +9,7 @@ Thu, 8 Nov 2007 00:00:00 +0200 {% for item in items %} - {{ item.title }} + {{ escape(item.title) }} {{ item.url }} {{ item.author.mail }} ({{ item.author.name }}) {{ item.url }} -- 2.47.3