From b3a3d3e2fab59c542c40135b242364780e9a9768 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 26 Dec 2006 21:18:44 +0000 Subject: replaced deprecated find_all calls git-svn-id: http://redmine.rubyforge.org/svn/trunk@126 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/reports_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/controllers/reports_controller.rb') diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index c10929d5b..f493f5c60 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -20,12 +20,12 @@ class ReportsController < ApplicationController before_filter :find_project, :authorize def issue_report - @statuses = IssueStatus.find_all + @statuses = IssueStatus.find :all case params[:detail] when "tracker" @field = "tracker_id" - @rows = Tracker.find_all + @rows = Tracker.find :all @data = issues_by_tracker @report_title = l(:field_tracker) render :template => "reports/issue_report_details" -- cgit v1.2.3