From 8d4e528f22239c4a4c4f01f491a46958724224e3 2012-06-09 10:53:17 From: Jean-Philippe Lang Date: 2012-06-09 10:53:17 Subject: [PATCH] Force rendering of activity view if activity items count changed. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9787 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/activities_controller.rb b/app/controllers/activities_controller.rb index aba96d7..ef25a3b 100644 --- a/app/controllers/activities_controller.rb +++ b/app/controllers/activities_controller.rb @@ -40,7 +40,7 @@ class ActivitiesController < ApplicationController events = @activity.events(@date_from, @date_to) - if events.empty? || stale?(:etag => [@activity.scope, @date_to, @date_from, @with_subprojects, @author, events.first, User.current, current_language]) + if events.empty? || stale?(:etag => [@activity.scope, @date_to, @date_from, @with_subprojects, @author, events.first, events.size, User.current, current_language]) respond_to do |format| format.html { @events_by_day = events.group_by {|event| User.current.time_to_date(event.event_datetime)}