diff options
author | Steven Barth <steven@midlink.org> | 2008-07-17 16:02:29 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-17 16:02:29 +0000 |
commit | 52d49762ed28033d82e5ab1e0ccf65ad74a4b593 (patch) | |
tree | 61ba5cc4a6a1cebfff038e815bea7f001fab305a /applications/luci-qos/luasrc/controller | |
parent | 8d1aff78b17d6f7437d776bdf53a6aa2112f31db (diff) |
applications/luci-qos: Smaller enhancements, support for luci-mini
applications/luci-fw: Fixed support for luci-mini
libs/web: Removed luci.dispatcher.registered
Diffstat (limited to 'applications/luci-qos/luasrc/controller')
-rw-r--r-- | applications/luci-qos/luasrc/controller/qos.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/applications/luci-qos/luasrc/controller/qos.lua b/applications/luci-qos/luasrc/controller/qos.lua index 5817060916..0222806bbd 100644 --- a/applications/luci-qos/luasrc/controller/qos.lua +++ b/applications/luci-qos/luasrc/controller/qos.lua @@ -18,5 +18,12 @@ function index() return end - entry({"admin", "network", "qos"}, cbi("qos/qos"), "QoS").i18n = "qos" + local page = entry({"admin", "network", "qos"}, cbi("qos/qos"), "QoS") + page.i18n = "qos" + page.dependent = true + + + local page = entry({"mini", "network", "qos"}, cbi("qos/qosmini"), "QoS") + page.i18n = "qos" + page.dependent = true end
\ No newline at end of file |