diff --git a/app/models/communication/website/agenda/event.rb b/app/models/communication/website/agenda/event.rb index d8066aa58f069cfd8404531bff867b3dea6ff6d1..a482b9fc91be146ed84a46c8c6ca1297c01dc95c 100644 --- a/app/models/communication/website/agenda/event.rb +++ b/app/models/communication/website/agenda/event.rb @@ -188,7 +188,14 @@ class Communication::Website::Agenda::Event < ApplicationRecord end def date_and_time(date, time) - Time.new(date.year, date.month, date.day, time.hour, time.min, time.sec, time.zone) + # FIXME la timezone est Europe/Paris pour tout + Time.new date.year, + date.month, + date.day, + time.hour, + time.min, + time.sec, + Time.zone end def check_accessibility