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:
parent
9200520395
commit
26bd59a1da
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue