diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-08 19:00:37 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-08 19:00:37 +0000 |
commit | fa95501fe5e8c97de4f5960c4eeecfe70d4455f2 (patch) | |
tree | 8a1705ab6dd35f12a28201bfdfc15edbd55a4503 /app/controllers | |
parent | a069c4afcfc5a78853155f43dc1ae7df67c96c87 (diff) | |
download | redmine-fa95501fe5e8c97de4f5960c4eeecfe70d4455f2.tar.gz redmine-fa95501fe5e8c97de4f5960c4eeecfe70d4455f2.zip |
Added issues status changes on the activity view (initial patch by Cyril Mougel).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@892 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/projects_controller.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index b4ffe57e8..f67a1caa2 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -405,6 +405,7 @@ class ProjectsController < ApplicationController if @scope.include?('issues') @events += @project.issues.find(:all, :include => [:author, :tracker], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ) + @events += @project.issues_status_changes(@date_from, @date_to) end if @scope.include?('news') |