summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2021-08-19 13:13:26 +0000
committerGo MAEDA <maeda@farend.jp>2021-08-19 13:13:26 +0000
commitee64cb5cb1b95ed42ed3ba3b1ea80a9efd428eee (patch)
treec032f3d27b845239c08379dc7f224052679a90c7
parenta0fa4491c0aeb47723d20e614ccb75eb0d713596 (diff)
downloadredmine-ee64cb5cb1b95ed42ed3ba3b1ea80a9efd428eee.tar.gz
redmine-ee64cb5cb1b95ed42ed3ba3b1ea80a9efd428eee.zip
Remove unused argument from Redmine::Helpers::TimeReport (#33079).
Patch by Kevin Fischer. git-svn-id: http://svn.redmine.org/redmine/trunk@21196 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/controllers/timelog_controller.rb2
-rw-r--r--lib/redmine/helpers/time_report.rb3
2 files changed, 2 insertions, 3 deletions
diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb
index 3ccab48e5..3c3dc9df3 100644
--- a/app/controllers/timelog_controller.rb
+++ b/app/controllers/timelog_controller.rb
@@ -76,7 +76,7 @@ class TimelogController < ApplicationController
retrieve_time_entry_query
scope = time_entry_scope
- @report = Redmine::Helpers::TimeReport.new(@project, @issue, params[:criteria], params[:columns], scope)
+ @report = Redmine::Helpers::TimeReport.new(@project, params[:criteria], params[:columns], scope)
respond_to do |format|
format.html {render :layout => !request.xhr?}
diff --git a/lib/redmine/helpers/time_report.rb b/lib/redmine/helpers/time_report.rb
index 531026f63..89b94ec3c 100644
--- a/lib/redmine/helpers/time_report.rb
+++ b/lib/redmine/helpers/time_report.rb
@@ -22,9 +22,8 @@ module Redmine
class TimeReport
attr_reader :criteria, :columns, :hours, :total_hours, :periods
- def initialize(project, issue, criteria, columns, time_entry_scope)
+ def initialize(project, criteria, columns, time_entry_scope)
@project = project
- @issue = issue
@criteria = criteria || []
@criteria = @criteria.select{|criteria| available_criteria.has_key? criteria}