Bug with createTimeSpan
Hi,
Since the daylight savings began on Sunday morning, I have been having this problem:
<cfset x = now()>
<cfset y = now() + createTimeSpan( 0, 0, 0, 0 )>
<cfset z = now() + createTimeSpan( 0, 1, 0, 0 )>
<cfoutput>
x: #timeFormat( x, "h:mm tt" )# <br />
y: #timeFormat( y, "h:mm tt" )# <br />
z: #timeFormat( z, "h:mm tt" )# <br />
</cfoutput>
x and z are showing the same time while y is one hour behind x.
We are running CF 9,0,1,274733. Any idea how to debug this?
Thanks.
