Avoid using rinku's auto_link helper

It's currently broken (https://github.com/vmg/rinku/issues/70) and
in case our own linkify has some additional customisations.
This commit is contained in:
Tom Hughes 2017-10-27 19:45:32 +01:00
parent cea455d390
commit 1c77d2432e
3 changed files with 8 additions and 2 deletions

View file

@ -62,7 +62,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])} = #{linkify(h(tag[1]))}"
end
end
end