V1.2.0
The _formatDate function can incorrectly pad months when using the "m"
option. e.g. a date in October will produce "010" rather than "10".
I think that:
m: function(date) { return (date.getMonth() < 11 ? '0' : '') +
(date.getMonth() + 1); },
should read:
m: function(date) { return (date.getMonth() < 9 ? '0' : '') +
(date.getMonth() + 1); },
cheers,
Mark
Original issue reported on code.google.com by msharr...@gmail.com on 22 Jul 2009 at 4:01
Original issue reported on code.google.com by
msharr...@gmail.com
on 22 Jul 2009 at 4:01