Skip to content

Commit

Permalink
Merge pull request #134 from vendethiel/bugfix/gh-117-rss-cdata
Browse files Browse the repository at this point in the history
Add missing CDATA tags to RSS
  • Loading branch information
MightyGorgon committed Oct 1, 2016
2 parents f63e637 + c5b85f8 commit e85c37b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/default/rss_body.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
More info at http://naklon.info/rss/about.htm
-->
<channel>
<title>{BOARD_TITLE}</title>
<title><![CDATA[{BOARD_TITLE}]]></title>
<link>{BOARD_URL}</link>
<description>{BOARD_DESCRIPTION}</description>
<description><![CDATA[{BOARD_DESCRIPTION}]]></description>
<managingEditor>{BOARD_MANAGING_EDITOR}</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>{PROGRAM}</generator>{LANGUAGE}
<lastBuildDate>{BUILD_DATE}</lastBuildDate>
<image>
<url>{BOARD_URL}images/links/banner_ip.gif</url>
<title>{BOARD_TITLE}</title>
<title><![CDATA[{BOARD_TITLE}]]></title>
<link>{BOARD_URL}</link>
<width>88</width>
<height>31</height>
Expand All @@ -37,11 +37,11 @@
<br /><div class="post-text post-text-hide-flow">{post_item.POST_TEXT}{post_item.USER_SIG}</div><br />
]]>
</description>
<dc:creator>{post_item.AUTHOR0}</dc:creator>
<dc:subject>{post_item.FORUM_NAME}</dc:subject>
<dc:creator><![CDATA[{post_item.AUTHOR0}]]></dc:creator>
<dc:subject><![CDATA[{post_item.FORUM_NAME}]]></dc:subject>
<annotate:reference rdf:resource="{post_item.FIRST_POST_URL}" />
<comments>{post_item.REPLY_URL}</comments>
</item>
<!-- END post_item -->
</channel>
</rss>
</rss>

0 comments on commit e85c37b

Please sign in to comment.