]> git.sur5r.net Git - bacula/bacula/commitdiff
bweb: Fix #1909 about expire calculation
authorEric Bollengier <eric@baculasystems.com>
Tue, 10 Jul 2012 15:49:26 +0000 (17:49 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:53 +0000 (14:50 +0200)
gui/bweb/html/bweb.js

index 0bcd098148d23967f773f74a51f575e66a5d8f5f..f883779ec0b894ac8b4464162cd032192b88004b 100644 (file)
@@ -378,7 +378,7 @@ function timestamp_to_iso(ts)
     }
     var datum = new Date(ts);
     
-    return datum.getFullYear() + '-' + pad(datum.getMonth()+1) + '-' + pad(datum.getDay()+1) + ' ' + pad(datum.getHours()) + ':' + pad(datum.getMinutes()) + ':' + pad(datum.getSeconds());
+    return datum.getFullYear() + '-' + pad(datum.getMonth()+1) + '-' + pad(datum.getDate()+1) + ' ' + pad(datum.getHours()) + ':' + pad(datum.getMinutes()) + ':' + pad(datum.getSeconds());
 }
 
 function bweb_get_job_img(status, errors, type)