escape the description field in the default RSS template
This commit is contained in:
parent
af5733bbc4
commit
7a14ebd639
2 changed files with 19 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
18
docs/upgrades/templates-7.3.9/PBtmpl0000000000000142.tmpl
Normal file
18
docs/upgrades/templates-7.3.9/PBtmpl0000000000000142.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 ESCAPE="HTML"></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