diff options
-rw-r--r-- | modules/changes/changes.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/changes/changes.html b/modules/changes/changes.html index 5dbcc6d..07cc7f9 100644 --- a/modules/changes/changes.html +++ b/modules/changes/changes.html @@ -18,7 +18,7 @@ function pad(s,n,c){ } function dateformat(date){ - return date.getFullYear()+"/"+pad(date.getMonth(),2)+"/"+pad(date.getDate(),2)+" "+ + return date.getFullYear()+"/"+pad(date.getMonth()+1,2)+"/"+pad(date.getDate(),2)+" "+ pad(date.getHours(),2)+":"+pad(date.getMinutes(),2)+":"+pad(date.getSeconds(),2); } |