From: Ævar Arnfjörð Bjarmason Date: Mon, 14 Sep 2009 21:08:17 +0000 (+0000) Subject: While we don't have the sanitizing backend to safely solve ticket X-Git-Tag: live~6694 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/466f6401388d6de8de885f319f611c10db0cd97e?hp=332f8d3a4fc30c618e23cdd5595f68a56c6dd6b1 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. --- diff --git a/app/views/changeset/list.atom.builder b/app/views/changeset/list.atom.builder index 6dcdd4f1d..82309ee53 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])} = #{sanitize(auto_link(tag[1]))}" + tr.td "#{h(tag[0])} = #{sanitize(tag[1])}" end end end