Browse Source

Minor tweak to the RSS template.

Brit Butler 11 years ago
parent
commit
04619d57ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      themes/rss.tmpl

+ 1 - 1
themes/rss.tmpl

18
       <author>{$config.author}</author>
18
       <author>{$config.author}</author>
19
       <guid isPermaLink="true">{$config.domain}/posts/{$post.slug}.{$config.pageExt}</guid>
19
       <guid isPermaLink="true">{$config.domain}/posts/{$post.slug}.{$config.pageExt}</guid>
20
       {foreach $tag in $post.tags}
20
       {foreach $tag in $post.tags}
21
-        <category><![CDATA[ {$tag} ]]></category>
21
+        <category><![CDATA[ {$tag.name |noAutoescape} ]]></category>
22
       {/foreach}
22
       {/foreach}
23
       <description><![CDATA[ {$post.text |noAutoescape} ]]></description>
23
       <description><![CDATA[ {$post.text |noAutoescape} ]]></description>
24
     </item>
24
     </item>