diff options
-rw-r--r-- | juick-www/src/main/resources/layouts/rss.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/resources/layouts/rss.xml b/juick-www/src/main/resources/layouts/rss.xml index 61dd3be8..12f7375b 100644 --- a/juick-www/src/main/resources/layouts/rss.xml +++ b/juick-www/src/main/resources/layouts/rss.xml @@ -15,11 +15,11 @@ <item> <link>http://juick.com/{{ msg.getUser().getUName() }}/{{ msg.getMID() }}</link> <guid>http://juick.com/{{ msg.getUser().getUName() }}/{{ msg.getMID() }}</guid> - <title><![CDATA[@{{ msg.getUser().getUName() }}: {% for tag in msg.Tags %} *{{ tag }}{% endfor %}]]></title> + <title><![CDATA[@{{ msg.getUser().getUName() }}: {% for tag in msg.tags %} *{{ tag }}{% endfor %}]]></title> <description><![CDATA[{{ msg.getText() | raw }}]]></description> <pubDate>{{ sdfRSS.format(msg.getDate()) }}</pubDate> <comments>http://juick.com/{{ msg.getUser().getUName() }}/{{ msg.getMID() }}</comments> - {% for tag in msg.Tags %} + {% for tag in msg.tags %} <category>{{ tag }}</category> {% endfor %} {% if msg.AttachmentType is not empty %} |