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.
This commit is contained in:
Tom Hughes 2009-09-14 23:17:52 +00:00
parent 9200520395
commit 26bd59a1da

View file

@ -68,7 +68,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
td.table :cellpadding => "0" do |table| td.table :cellpadding => "0" do |table|
changeset.tags.sort.each do |tag| changeset.tags.sort.each do |tag|
table.tr do |tr| 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 end
end end