I can confirm this bug.

It's taking place on line 1308:
printDate.setUTCDate(printDate.getUTCDate() + 1);

'printDate' is a normal javascript Date object.

You can test this by running the following in a firebug console:
var x = new Date(2008, 10, 2);
// evaluates to: "Sun Nov 02 2008 00:00:00 GMT-0500 (Central Daylight
Time) _orient=1 _is=false"
x.setUTCDate( 3 );
// evaluates to: "Sun Nov 02 2008 23:00:00 GMT-0600 (Central Standard
Time) _orient=1 _is=false" !!!!!!

Note that instead of Mon Nov 03 2008 00:00:00, it only gets bumped up
by 23 hours.

On Nov 4, 10:56 am, mohan <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am trying to use the jquery date picker present in the jquery UI
> site :
>
> http://docs.jquery.com/UI/Datepicker
>
> The month of november shows the date 11/2/2008 twice...Did any body
> come across the same bug..Iam looking for ideas to correct it.
>
> Thanks
> Mohan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to