summaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-27 09:25:55 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-27 09:25:55 +0000
commit471679b0f0933eecbb2e423b5d51227c70f771d3 (patch)
treedd73d55f2cb856ddcffd8468d19dc23f921b6b54 /app/controllers
parent862c9d76e617c17e5ab48c57441f939543bf4db3 (diff)
downloadredmine-471679b0f0933eecbb2e423b5d51227c70f771d3.tar.gz
redmine-471679b0f0933eecbb2e423b5d51227c70f771d3.zip
deprecated @headers replaced
git-svn-id: http://redmine.rubyforge.org/svn/trunk@194 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/feeds_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/feeds_controller.rb b/app/controllers/feeds_controller.rb
index bfce26f8f..d984c225e 100644
--- a/app/controllers/feeds_controller.rb
+++ b/app/controllers/feeds_controller.rb
@@ -20,6 +20,6 @@ class FeedsController < ApplicationController
def news
@news = News.find :all, :order => 'news.created_on DESC', :limit => 10, :include => [ :author, :project ]
- @headers["Content-Type"] = "application/rss+xml"
+ headers["Content-Type"] = "application/rss+xml"
end
end