From 26bd59a1da4d255a317a0c99e8e3a233e479e339 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 14 Sep 2009 23:17:52 +0000 Subject: [PATCH] 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. --- app/views/changeset/list.atom.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.2