Bookings after daylight savings changes showing incorrectly

Issue #39 resolved
Justin Hayes repo owner created an issue

Bookings like #3658 are showing at the wrong times after the change in time to BST.

The booking is showing on the site as from 1pm-3pm but in the DB (and in Alison's expectations) it should be 12pm-2pm.

#!

mysql> select booking_id,start,end from booking where booking_id = 3658;
+------------+---------------------+---------------------+
| booking_id | start               | end                 |
+------------+---------------------+---------------------+
|       3658 | 2013-03-31 12:00:00 | 2013-03-31 14:00:00 |
+------------+---------------------+---------------------+
1 row in set (0.00 sec)

Comments (2)

  1. Justin Hayes reporter

    Have resolved this issue for now by displaying everything in Zulu time.

    Might have to look at doing local browser time display at some point though....

  2. Log in to comment