From: Toshi MARUYAMA Date: Mon, 31 Aug 2015 03:38:44 +0000 (+0000) Subject: Merged r14409 from trunk to 3.1-stable (#11253, #20456) X-Git-Tag: 3.1.1~26 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7cc8aa756df5c7df750fee2bd14224e8fa1367cf;p=redmine.git Merged r14409 from trunk to 3.1-stable (#11253, #20456) Fixes methods comments. git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@14536 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/issue.rb b/app/models/issue.rb index 72df50cd6..e0f93faef 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -947,7 +947,7 @@ class Issue < ActiveRecord::Base end end - # Preloads visible total spent time for a collection of issues + # Preloads visible spent time for a collection of issues def self.load_visible_spent_hours(issues, user=User.current) if issues.any? hours_by_issue_id = TimeEntry.visible(user).where(:issue_id => issues.map(&:id)).group(:issue_id).sum(:hours) @@ -957,6 +957,7 @@ class Issue < ActiveRecord::Base end end + # Preloads visible total spent time for a collection of issues def self.load_visible_total_spent_hours(issues, user=User.current) if issues.any? hours_by_issue_id = TimeEntry.visible(user).joins(:issue).