escape the description field in the default RSS template

This commit is contained in:
Colin Kuskie 2007-01-26 22:00:21 +00:00
parent af5733bbc4
commit 7a14ebd639
2 changed files with 19 additions and 0 deletions

View file

@ -1,5 +1,6 @@
7.3.9
- fix: Can't add task to project management (perlDreamer Consulting, LLC)
- fix: Error in RSS Feed (perlDreamer Consulting, LLC)
7.3.8
- Fixed a template variable rewriting problem with HTML::Template::Expr

View file

@ -0,0 +1,18 @@
#PBtmpl0000000000000142
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><tmpl_var title ESCAPE="HTML"></title>
<link><tmpl_var link></link>
<description><tmpl_var description></description>
<tmpl_loop item_loop>
<item>
<title><tmpl_var title ESCAPE="HTML"></title>
<link><tmpl_var link></link>
<description><tmpl_var description ESCAPE="HTML"></description>
<guid isPermaLink="true"><tmpl_var guid></guid>
<pubDate><tmpl_var pubDate></pubDate>
</item>
</tmpl_loop>
</channel>
</rss>