Inconsistent Times being stored in XPages
datetime, xpages
Solution
This is a bug and regression (the above works in 852). IBM is working on a fix. More on that later, but in the meantime call this in with Support and when a hotfix becomes available we'll get that to you.
Problem
If I have an XPage with a Time field on it: ``` <xp:inputText id="inputText2" value="#{document1.Time}" defaultValue="#{javascript:@Now()}"> <xp:this.converter> <xp:convertDateTime type="time" ignoreUserTimeZone="false" timeStyle="full"> </xp:convertDateTime> </xp:this.converter> </xp:inputText> ``` My server is set to UK time, when I save the document and then view it again the time will have moved on by one hour. In my xsp.properties file I have: ``` xsp.user.timezone=true xsp.user.timezone.roundtrip=true ``` Is this a bug or me not having configured my server correctly?