fix for escaping titles in the CS RSS template
This commit is contained in:
parent
824b7a4545
commit
1497c991a1
2 changed files with 19 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
18
docs/upgrades/templates-7.3.5/cs_rss.tmpl
Normal file
18
docs/upgrades/templates-7.3.5/cs_rss.tmpl
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue