modules/freifunk: Hardcoding timezone was not a good idea
authorManuel Munz <freifunk@somakoma.de>
Mon, 4 Apr 2011 12:04:42 +0000 (12:04 +0000)
committerManuel Munz <freifunk@somakoma.de>
Mon, 4 Apr 2011 12:04:42 +0000 (12:04 +0000)
modules/freifunk/luasrc/controller/freifunk/freifunk.lua
modules/freifunk/luasrc/view/freifunk/public_status.htm

index 9f7632f6c44590ae5afc14f0fb90b49deade5879..a536fea0a4ef6c15f2606bc16622e7bce67687fb 100644 (file)
@@ -294,7 +294,7 @@ function public_status_json()
        end
        
        rv[#rv+1] = {
-               time = os.date("%a, %d %b %Y %H:%M:%S UTC"),
+               time = os.date("%a, %d %b %Y, %H:%M:%S"),
                uptime = twa.date_format(tonumber(sys.uptime())),
                load = string.format("%.2f, %.2f, %.2f", load1, load5, load15),
                mem = mem,
index fe56034e4dcb84b38148984c01ca1ad009ed891c..3cb57082e27297db59f138ade7ddddee6be9084b 100644 (file)
@@ -6,7 +6,7 @@ local twa = require "luci.tools.webadmin"
 -- System
 local system, model, memtotal, memcached, membuffers, memfree, bogomips = sys.sysinfo()
 local uptime = twa.date_format(tonumber(sys.uptime()))
-local_time = os.date("%a, %d %b %Y %H:%M:%S UTC")
+local_time = os.date("%a, %d %b %Y, %H:%M:%S")
 local load1, load5, load15 = sys.loadavg()
 local load = string.format("%.2f, %.2f, %.2f", load1, load5, load15)