]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/changeset/list.atom.builder
Render the links using partial so we can do the appropriate rendering
[rails.git] / app / views / changeset / list.atom.builder
index c71c22aa1e55580c09e5bf443ebc3b78a1245ac6..db53cdb080c381c534f452876cea97ee171ce30c 100644 (file)
@@ -5,7 +5,9 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
   feed.title @title
 
   feed.subtitle :type => 'xhtml' do |xhtml|
-    xhtml.p @description
+    xhtml.p do |p|
+      p << @description
+    end
   end
 
   feed.updated @edits.map {|e|  [e.created_at, e.closed_at].max }.max