]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/diary_entry_controller.rb
fix problematic merge
[rails.git] / app / controllers / diary_entry_controller.rb
index 2dbf8a0cbbc8d3373e0c29f6622182c02a186bb6..b072fc0e364e5dd58f86f05bc6e5f78c0bb31bb6 100644 (file)
@@ -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