##// END OF EJS Templates
Merged r2643 from trunk....
Jean-Philippe Lang -
r2564:e28b5e1f08ad
parent child
Show More
@@ -35,8 +35,12 module TimelogHelper
35 end
35 end
36
36
37 def select_hours(data, criteria, value)
37 def select_hours(data, criteria, value)
38 if value.to_s.empty?
39 data.select {|row| row[criteria].blank? }
40 else
38 data.select {|row| row[criteria] == value}
41 data.select {|row| row[criteria] == value}
39 end
42 end
43 end
40
44
41 def sum_hours(data)
45 def sum_hours(data)
42 sum = 0
46 sum = 0
@@ -20,6 +20,7 http://www.redmine.org/
20 * Fixed: News summary field content is not searchable
20 * Fixed: News summary field content is not searchable
21 * Fixed: Journal#save has a wrong signature
21 * Fixed: Journal#save has a wrong signature
22 * Fixed: Email footer signature convention
22 * Fixed: Email footer signature convention
23 * Fixed: Timelog report do not show time for non-versioned issues
23
24
24
25
25 == 2009-03-07 v0.8.2
26 == 2009-03-07 v0.8.2
General Comments 0
You need to be logged in to leave comments. Login now