Fix malformed tags table in changeset atom feed

This commit is contained in:
Malte Gerken 2022-10-17 15:37:07 +02:00 committed by GitHub
parent 915aeccabb
commit 4492118dbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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