Skip to content

Commit

Permalink
Backported r3692 from trunk.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.9-stable@3713 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
jplang committed Apr 30, 2010
1 parent d287436 commit 7b27280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controllers/reports_controller.rb
Expand Up @@ -61,7 +61,7 @@ def issue_report
render :template => "reports/issue_report_details"
when "subproject"
@field = "project_id"
@rows = @project.descendants.active
@rows = @project.descendants.visible
@data = issues_by_subproject
@report_title = l(:field_subproject)
render :template => "reports/issue_report_details"
Expand All @@ -72,7 +72,7 @@ def issue_report
@categories = @project.issue_categories
@assignees = @project.members.collect { |m| m.user }.sort
@authors = @project.members.collect { |m| m.user }.sort
@subprojects = @project.descendants.active
@subprojects = @project.descendants.visible
issues_by_tracker
issues_by_version
issues_by_priority
Expand Down

0 comments on commit 7b27280

Please sign in to comment.