summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-livestats/luasrc/controller
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-10-20 19:00:17 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-10-20 19:00:17 +0000
commit174e045fb42207b7c10ff8e5d6feb38873149e3a (patch)
treef0602a2f8d51a7a1fd6ec5cb82f7eed04600cbbf /applications/luci-livestats/luasrc/controller
parentc951eeb00878768a0f03803c5eccad4e977d985e (diff)
* luci/app/livestats: fix load diagram, improvements for diagram layout, fix menu order
Diffstat (limited to 'applications/luci-livestats/luasrc/controller')
-rw-r--r--applications/luci-livestats/luasrc/controller/livestats.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-livestats/luasrc/controller/livestats.lua b/applications/luci-livestats/luasrc/controller/livestats.lua
index 0ca2276223..5211f7925b 100644
--- a/applications/luci-livestats/luasrc/controller/livestats.lua
+++ b/applications/luci-livestats/luasrc/controller/livestats.lua
@@ -19,7 +19,7 @@ function index()
require("luci.i18n")
luci.i18n.loadc("livestats")
- entry( {"admin", "status", "wifistat"}, template("livestats/wireless"), luci.i18n.translate("livestat_wireless", "Live Wireless Statistics") ).i18n = "livestat"
- entry( {"admin", "status", "trafstat"}, template("livestats/traffic"), luci.i18n.translate("livestat_traffic", "Live Traffic Statistics") ).i18n = "livestat"
- entry( {"admin", "status", "loadavg"}, template("livestats/loadavg"), luci.i18n.translate("livestat_loadavg", "Live Load Statistics") ).i18n = "livestat"
+ entry( {"admin", "status", "wifistat"}, template("livestats/wireless"), luci.i18n.translate("livestat_wireless", "Live Wireless Statistics"), 90 ).i18n = "livestat"
+ entry( {"admin", "status", "trafstat"}, template("livestats/traffic"), luci.i18n.translate("livestat_traffic", "Live Traffic Statistics"), 91 ).i18n = "livestat"
+ entry( {"admin", "status", "loadavg"}, template("livestats/loadavg"), luci.i18n.translate("livestat_loadavg", "Live Load Statistics"), 92 ).i18n = "livestat"
end