aboutsummaryrefslogtreecommitdiff
path: root/templates/rssitem.tmpl
diff options
context:
space:
mode:
authorSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-07-31 22:13:21 +0100
committerSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-07-31 22:13:21 +0100
commit9b901a33647407142038175006f81e773ae5883a (patch)
tree2fcb4e00c56fb328e9b2d6b20e53ec3380068760 /templates/rssitem.tmpl
parent9bc2e316b2d96245a9904da4d484f918db39ed07 (diff)
downloadikiwiki-9b901a33647407142038175006f81e773ae5883a.tar
ikiwiki-9b901a33647407142038175006f81e773ae5883a.tar.gz
Escape HTML in RSS feeds, rather than relying on it being valid to stuff into a CDATA section
Diffstat (limited to 'templates/rssitem.tmpl')
-rw-r--r--templates/rssitem.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/rssitem.tmpl b/templates/rssitem.tmpl
index 1144cd5e2..42936a668 100644
--- a/templates/rssitem.tmpl
+++ b/templates/rssitem.tmpl
@@ -21,6 +21,6 @@
<TMPL_IF NAME="ENCLOSURE">
<enclosure url="<TMPL_VAR ENCLOSURE>" type="<TMPL_VAR TYPE>" length="<TMPL_VAR LENGTH>" />
<TMPL_ELSE>
- <description><![CDATA[<TMPL_VAR CONTENT>]]></description>
+ <description><TMPL_VAR CONTENT ESCAPE=HTML></description>
</TMPL_IF>
</item>