##// END OF EJS Templates
Fixed: last day of the month not included in project activity...
Jean-Philippe Lang -
r490:0f0ab7456096
parent child
Show More
@@ -462,7 +462,7 class ProjectsController < ApplicationController
462 @month ||= Date.today.month
462 @month ||= Date.today.month
463
463
464 @date_from = Date.civil(@year, @month, 1)
464 @date_from = Date.civil(@year, @month, 1)
465 @date_to = (@date_from >> 1)-1
465 @date_to = @date_from >> 1
466
466
467 @events_by_day = {}
467 @events_by_day = {}
468
468
General Comments 0
You need to be logged in to leave comments. Login now