fix for escaping titles in the CS RSS template

This commit is contained in:
Colin Kuskie 2007-01-17 23:18:22 +00:00
parent 824b7a4545
commit 1497c991a1
2 changed files with 19 additions and 0 deletions

View file

@ -26,6 +26,7 @@
custom forms do not work or are broken. It now skips these and throws a
warning
- fix: Added javascript confirmation for deleting wiki pages.
- fix: Collaboration rss broken (perlDreamer Consulting, LLC)
7.3.4

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></description>
<guid isPermaLink="true"><tmpl_var guid></guid>
<pubDate><tmpl_var pubDate></pubDate>
</item>
</tmpl_loop>
</channel>
</rss>