Closed slavap closed 10 years ago
ISO expects month in 1..12, not 0..11 as it's implemented now. So correct code for ISO is:
fmtObj.ISO = fmtObj.Year + "-" + w._zPad(fmtObj.Month + 1) + "-" + w._zPad(fmtObj.Date);
Huh. I swear I thought I already corrected that once.
Will do.
ISO expects month in 1..12, not 0..11 as it's implemented now. So correct code for ISO is: