WebUI: Restore weekday name to Upcoming/Finished/Failed Recordings grids

This commit is contained in:
ProfYaffle 2014-12-21 12:06:25 +00:00
parent 9a5b4db242
commit d5ce076150

View file

@ -303,7 +303,7 @@ tvheadend.IdNodeField = function(conf)
}
return function(v) {
var dt = new Date(v * 1000);
return dt.toLocaleString();
return dt.toLocaleString(window.navigator.language, {weekday: 'short'}) + ' ' + dt.toLocaleString();
}
}