From: Anton Khorev Date: Wed, 14 Feb 2024 16:22:45 +0000 (+0300) Subject: Remove html type from changeset feed entry titles X-Git-Tag: live~843^2~2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/8e3674b1c54e111676f12540fad30c8e19e092ed Remove html type from changeset feed entry titles --- diff --git a/app/views/changesets/index.atom.builder b/app/views/changesets/index.atom.builder index a1af72b91..b37fee367 100644 --- a/app/views/changesets/index.atom.builder +++ b/app/views/changesets/index.atom.builder @@ -25,7 +25,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009, :type => "application/osmChange+xml" if !changeset.tags.empty? && changeset.tags.key?("comment") - entry.title t("browse.changeset.feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"]), :type => "html" + entry.title t("browse.changeset.feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"]) else entry.title t("browse.changeset.feed.title", :id => changeset.id) end