Fixed bug where timezone wasn't adjusting correctly when adding or editing a show

This commit is contained in:
Duncan Sommerville 2014-10-27 15:42:30 -04:00
parent e6b9a71d00
commit d467714f84

View file

@ -346,6 +346,8 @@ function setAddShowEvents(form) {
startTimeField.val(json.start.time);
endDateField.val(json.end.date);
endTimeField.val(json.end.time);
// Change the timezone now that we've updated the times
currentTimezone = newTimezone;
});
});