X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1017c4c39a1a8523262f290ff20f999223a0572b..84b67e00a07262139f2cc9e9460f4afd35e91349:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 2dbf8a0cb..b072fc0e3 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -47,9 +47,7 @@ class DiaryEntryController < ApplicationController rss.add(latitude, longitude, entry.title, url_for({:controller => 'diary_entry', :action => 'list', :id => entry.id, :display_name => entry.user.display_name}), entry.body, entry.created_at) end - response.headers["Content-Type"] = 'application/rss+xml' - - render :text => rss.to_s + render :text => rss.to_s, :content_type => "application/rss+xml" end end