diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-09 12:15:06 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-09 12:15:06 +0100 |
commit | 240458ea8a5353683fab48eb6e10b65779985ab8 (patch) | |
tree | 7897379e2d7d83694b6a0c0ae04cd6252346013c | |
parent | 993cf1222998a7e3e78ed8e81efb91eaf2313d00 (diff) |
luci-mod-freifunk: fix public status page
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
-rw-r--r-- | modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm index 72bd136c5..42a58f9dd 100644 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm +++ b/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm @@ -23,12 +23,12 @@ local load = string.format("%.2f, %.2f, %.2f", loads[1] / 65535.0, loads[2] / 65 local mem = string.format( "%.2f MB (%.2f %s, %.2f %s, %.2f %s)", - memory.total / 1024 / 1024, - (memory.total - memory.free) / 1024 / 1024, + meminfo.total / 1024 / 1024, + (meminfo.total - meminfo.free) / 1024 / 1024, tostring(i18n.translate("used")), - memory.free / 1024 / 1024, + meminfo.free / 1024 / 1024, tostring(i18n.translate("free")), - memory.buffered / 1024 / 1024, + meminfo.buffered / 1024 / 1024, tostring(i18n.translate("buffered")) ) |