diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-05-26 12:07:56 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-05-26 12:07:56 +0000 |
commit | 189be55235b75c32908a4037825b453513673e64 (patch) | |
tree | a1bfcc244fa32c7e326487d145ec1b6232d51a5b /app/controllers/activities_controller.rb | |
parent | 84084b01689718ea901dcd66d66ab676c7bc4790 (diff) | |
download | redmine-189be55235b75c32908a4037825b453513673e64.tar.gz redmine-189be55235b75c32908a4037825b453513673e64.zip |
Fixed time zone issues introduced by r9719 (#10996).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9726 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/activities_controller.rb')
-rw-r--r-- | app/controllers/activities_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/activities_controller.rb b/app/controllers/activities_controller.rb index 6838b73c7..aba96d764 100644 --- a/app/controllers/activities_controller.rb +++ b/app/controllers/activities_controller.rb @@ -43,7 +43,7 @@ class ActivitiesController < ApplicationController if events.empty? || stale?(:etag => [@activity.scope, @date_to, @date_from, @with_subprojects, @author, events.first, User.current, current_language]) respond_to do |format| format.html { - @events_by_day = events.group_by(&:event_date) + @events_by_day = events.group_by {|event| User.current.time_to_date(event.event_datetime)} render :layout => false if request.xhr? } format.atom { |