1
0
Fork 0
This commit is contained in:
Jan Steemann 2012-09-04 14:11:39 +02:00
parent f9e0d9fb28
commit ae71cf201b
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ function formatTimeStamp (timestamp) {
var date = d.getUTCDate();
if (month < 10) month = "0" + month;
if (date < 10) hour = "0" + date;
if (date < 10) date = "0" + date;
var hour = d.getUTCHours();
var minutes = d.getUTCMinutes();