]> git.openstreetmap.org Git - rails.git/commitdiff
Fix malformed tags table in changeset atom feed
authorMalte Gerken <malte.gerken@gmail.com>
Mon, 17 Oct 2022 13:37:07 +0000 (15:37 +0200)
committerGitHub <noreply@github.com>
Mon, 17 Oct 2022 13:37:07 +0000 (15:37 +0200)
app/views/changesets/index.atom.builder

index 3ab438b59f7dd14cd0839dfe11969639251bdf50..1363b8c023fb7c96851e6ddd5747c2a5fd635c8e 100644 (file)
@@ -62,7 +62,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
                 td.table :cellpadding => "0" do |tag_table|
                   changeset.tags.sort.each do |tag|
                     tag_table.tr do |tag_tr|
-                      tag_tr.td << "#{tag[0]} = #{linkify(tag[1])}"
+                      tag_tr.td "#{tag[0]} = #{linkify(tag[1])}"
                     end
                   end
                 end