]> git.openstreetmap.org Git - rails.git/commitdiff
Remove html type from changeset feed entry titles
authorAnton Khorev <tony29@yandex.ru>
Wed, 14 Feb 2024 16:22:45 +0000 (19:22 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 16 Feb 2024 15:29:40 +0000 (18:29 +0300)
app/views/changesets/index.atom.builder

index a1af72b911d4917ab4862feb504c099d5106e62d..b37fee36755848a613da8f2295ae2134a039e530 100644 (file)
@@ -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