luci-mod-admin-full: display routers localtime again
[project/luci.git] / modules / luci-mod-admin-full / luasrc / view / admin_status / index.htm
index 17dfd14..6fca1c6 100644 (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);