app/views/posts/_post.rss.builder in radiant-forum-extension-2.1.6 vs app/views/posts/_post.rss.builder in radiant-forum-extension-3.0.0.rc3
- old
+ new
@@ -4,10 +4,10 @@
elsif (@topic && @topic == post.topic)
xm.title "Reply from #{h post.reader.name}"
else
xm.title "Reply to '#{h(post.topic.name)}' (from #{h post.reader.name})"
end
- xm.description clean_textilize(truncate_words(post.body, 64))
+ xm.description clean_html(truncate_words(post.body, 64))
xm.pubDate post.created_at.to_s(:rfc822)
- xm.guid [ActionController::Base.session_options[:session_key], post.forum_id.to_s, post.topic_id.to_s, post.id.to_s].join(":"), "isPermaLink" => "false"
+ xm.guid UUIDTools::UUID.timestamp_create(post.created_at).to_s, "isPermaLink" => "false"
xm.link paginated_post_url(post)
end