From: Tom Hughes Date: Mon, 14 Sep 2009 23:17:52 +0000 (+0000) Subject: Output tags to the feed as raw HTML so that links are not escaped (any X-Git-Tag: live~6785 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/26bd59a1da4d255a317a0c99e8e3a233e479e339?ds=sidebyside Output tags to the feed as raw HTML so that links are not escaped (any real HTML in the tag has already been escaped). Closes #2264. --- diff --git a/app/views/changeset/list.atom.builder b/app/views/changeset/list.atom.builder index 7905ac773..d9d53593c 100644 --- a/app/views/changeset/list.atom.builder +++ b/app/views/changeset/list.atom.builder @@ -68,7 +68,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009, td.table :cellpadding => "0" do |table| changeset.tags.sort.each do |tag| table.tr do |tr| - tr.td "#{h(tag[0])} = #{auto_link(h(tag[1]))}" + tr.td << "#{h(tag[0])} = #{auto_link(h(tag[1]))}" end end end