I'm using the latest nightly EE eval.
Since the clocks changed for daylight savings time, I have been getting this bug where times entered into a TimeItem jump back an hour after they are saved on the server. So, I try and save 2pm, and the TimeItem then jumps to 1pm after saving.
Here is what I have observed in my DMI-called methods on the server.
Since a field of type "time" only contains the time (say 2pm) it is stored as a java.util.Date at 1/1/1970 14:00 UTC. All fine.
Once daylight savings goes away, this time is stored with an offset of 1 hour, so 2pm is now stored at 1/1/1970 13:00 UTC. Is this correct?
I'll try and generate a test case that demonstrates this.
Since the clocks changed for daylight savings time, I have been getting this bug where times entered into a TimeItem jump back an hour after they are saved on the server. So, I try and save 2pm, and the TimeItem then jumps to 1pm after saving.
Here is what I have observed in my DMI-called methods on the server.
Since a field of type "time" only contains the time (say 2pm) it is stored as a java.util.Date at 1/1/1970 14:00 UTC. All fine.
Once daylight savings goes away, this time is stored with an offset of 1 hour, so 2pm is now stored at 1/1/1970 13:00 UTC. Is this correct?
I'll try and generate a test case that demonstrates this.
Comment