From 466f6401388d6de8de885f319f611c10db0cd97e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 14 Sep 2009 21:08:17 +0000 Subject: [PATCH 1/1] 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. --- 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 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 -- 2.43.2