Removed the line, back to the original

This commit is contained in:
Jean-Christophe Bourgault
2016-05-02 20:45:33 -04:00
parent ae29132175
commit 37f4252509

View File

@@ -6,7 +6,6 @@ CM.Disp.FormatTime = function(time, format) {
if (time == 'Infinity') return time;
if (CM.ConfigData.TimeFormat == 1) {
if (time > 3153600000) return 'XX:XX:XX:XX:XX';
if ((format == 1) && (time == 1)) return ':01';
time = Math.ceil(time);
var y = Math.floor(time / 31536000);
var d = Math.floor(time % 31536000 / 86400);