diff --git a/admin/utils.js b/admin/utils.js index f829e0b5..b18ddc5a 100644 --- a/admin/utils.js +++ b/admin/utils.js @@ -25,7 +25,7 @@ function getDate(date) { function getDateTime(date) { return getDate(date) + " " + [ - date.getHours(), + zpad(date.getHours()) , zpad(date.getMinutes() + 1) ].join(":"); }