diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-01 18:49:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-01 18:49:31 +0000 |
commit | c3e3a1891b721ae98d937cb060f109df8dc54346 (patch) | |
tree | 8d0867015a761a1cdfd3a5ed568c88723c57c9fd /app | |
parent | 47e7ceacd72d9d9e022c118d069d6934563e1f74 (diff) | |
download | redmine-c3e3a1891b721ae98d937cb060f109df8dc54346.tar.gz redmine-c3e3a1891b721ae98d937cb060f109df8dc54346.zip |
Small fix in project activity feed.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@793 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/projects_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index 5172f93b1..892d03911 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -436,7 +436,7 @@ class ProjectsController < ApplicationController @month ||= Date.today.month case params[:format] - when 'rss' + when 'atom' # 30 last days @date_from = Date.today - 30 @date_to = Date.today + 1 |