Open GoogleCodeExporter opened 8 years ago
Thanks for the fix, it was a real pain in the ass :) You saved my life. Or my
job. Well, both :)
Original comment by dansen...@gmail.com
on 12 May 2011 at 1:37
Note that the above fix will not work if the user is padding their month
parameter with an extra "0" (ie "00"). A better fix would be:
if (parseInt(month) > 0) {
// strip any preceeding 0's
month = month.replace(/^[0]+/g,"");
}
Original comment by dave.pederson
on 6 Dec 2011 at 8:03
thank u very much for help ...it s work very nice
Original comment by marouane...@gmail.com
on 13 Feb 2012 at 3:51
I can confirm that Dave's solution (Comment #2) worked.
A small point but the lines to replace are 4006 and 4007 in version 1.3.2
Original comment by e...@lemurheavy.com
on 8 Mar 2012 at 9:04
i have tried the above code for january month but still i am getting same
output....
please help me out as early as possible
and i am using DNN
Original comment by mishramu...@gmail.com
on 30 Aug 2013 at 6:12
Attachments:
Original issue reported on code.google.com by
ryan.uhl...@gmail.com
on 17 Mar 2011 at 8:31