While we don't have the sanitizing backend to safely solve ticket

#2264 I'm going to remove the auto_link feature of changeset tags. The
links are broken in all conforming Atom readers at the moment.
This commit is contained in:
Ævar Arnfjörð Bjarmason 2009-09-14 21:08:17 +00:00
parent 332f8d3a4f
commit 466f640138

View file

@ -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])} = #{sanitize(auto_link(tag[1]))}"
tr.td "#{h(tag[0])} = #{sanitize(tag[1])}"
end
end
end