luci-mod-admin-full: display routers localtime again

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
Jo-Philipp Wich 2015-01-15 17:41:26 +01:00
parent a35fffe3c3
commit 458469bb4f

View file

@ -54,7 +54,7 @@ You may obtain a copy of the License at
local rv = {
uptime = sysinfo.uptime or 0,
localtime = sysinfo.localtime or 0,
localtime = os.date(),
loadavg = sysinfo.load or { 0, 0, 0 },
memory = meminfo,
swap = swapinfo,
@ -505,7 +505,7 @@ You may obtain a copy of the License at
var e;
if (e = document.getElementById('localtime'))
e.innerHTML = (new Date(info.localtime * 1000)).toUTCString();
e.innerHTML = info.localtime;
if (e = document.getElementById('uptime'))
e.innerHTML = String.format('%t', info.uptime);