-Fix timestamp calculation problem for the UI

This commit is contained in:
martin 2011-03-31 19:10:18 -04:00
parent 1c8a9a88ae
commit 76cfe7714b
3 changed files with 2 additions and 6 deletions

View file

@ -375,5 +375,5 @@ function convertDateToPosixTime(s){
} else
sec = time[2];
return Date.UTC(year, month, day, hour, minute, sec, msec);
return Date.UTC(year, month-1, day, hour, minute, sec, msec);
}