Bug 349265: When using Modify Query, dates entered are clobbered (set to UNIX time)

by Jeremy Baron
r=justdave


git-svn-id: svn://10.0.0.236/trunk@214691 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bear%code-bear.com 2006-11-04 01:23:05 +00:00
parent 173c8977c6
commit a0b7cf178c

View File

@ -236,7 +236,7 @@ print "
<td><table BORDER=0 CELLPADDING=0 CELLPSPACING=0>
<tr>
<TD VALIGN=TOP ALIGN=RIGHT NOWRAP>
Between <input type=text name=mindate value='$mindate' size=25></td>
Between <input type=text name=mindate value='" . &MyFmtClock($mindate) . "' size=25></td>
<td valign=top rowspan=2>You can use the form
<B><TT><NOBR>yyyy-mm-dd hh:mm:ss</NOBR></TT></B> or a Unix <TT>time_t</TT>
(seconds since the Epoch.)
@ -244,7 +244,7 @@ Between <input type=text name=mindate value='$mindate' size=25></td>
</tr>
<tr>
<td VALIGN=TOP ALIGN=RIGHT NOWRAP>
and <input type=text name=maxdate value='$maxdate' size=25></td>
and <input type=text name=maxdate value='" . &MyFmtClock($maxdate) . "' size=25></td>
</tr>
</table>
</td>