luci-mod-freifunk: fix public status page
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 9 Feb 2015 11:15:06 +0000 (12:15 +0100)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 9 Feb 2015 11:15:06 +0000 (12:15 +0100)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm

index 72bd136..42a58f9 100644 (file)
@@ -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"))
 )