Skip to content
Snippets Groups Projects
Commit e89cd460 authored by Arnaud Levy's avatar Arnaud Levy
Browse files

Fix #1513

parent 7ac538a1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment