javascript date/month wrong

This commit is contained in:
Michael Save 2012-02-21 16:06:37 +11:00
parent 78901785fd
commit ef5aa63ea8

View File

@ -193,7 +193,7 @@ function init_localtime(){
times[i].textContent =
// date
zeropad(t.getMonth(), 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) +
zeropad(t.getMonth() + 1, 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) +
" (" + ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][t.getDay()] + ") " +
// time
zeropad(t.getHours(), 2) + ":" + zeropad(t.getMinutes(), 2) + ":" + zeropad(t.getSeconds(), 2);