X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/63e9c4771a02ecf69a692df3a6df3d236b0c214b..bb2c0c76ae8b85621c71d2d26e019a1871b39d50:/app/views/map_bugs/rss.rss.builder diff --git a/app/views/map_bugs/rss.rss.builder b/app/views/map_bugs/rss.rss.builder index ced183a10..566a3b322 100644 --- a/app/views/map_bugs/rss.rss.builder +++ b/app/views/map_bugs/rss.rss.builder @@ -27,16 +27,16 @@ xml.rss("version" => "2.0", if comment.event == "commented" and not comment.nil? description_text += "Comment:
" - description_text += htmlize(comment.comment) + description_text += htmlize(comment.body) description_text += "
" end description_text += "Full bug report:
" - description_text += comment.map_bug.flatten_comment("
", comment.date_created) + description_text += comment.map_bug.flatten_comment("
", comment.created_at) xml.description description_text - xml.author comment.commenter_name - xml.pubDate comment.date_created.to_s(:rfc822) + xml.author comment.author_name + xml.pubDate comment.created_at.to_s(:rfc822) xml.geo :lat, comment.map_bug.lat xml.geo :long, comment.map_bug.lon xml.georss :point, "#{comment.map_bug.lat} #{comment.map_bug.lon}"