diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-25 02:20:09 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-25 02:20:09 +0000 |
commit | 3a16b20c966f6931cc378f8e6b950483c958907f (patch) | |
tree | bd28e00a1141826ff56c24876a856d25bbce15e8 /applications | |
parent | 19b690c7d543c3eedcaef938d730a8e6564cf757 (diff) |
applications/luci-splash: don't allow removing common settings...
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-splash/luasrc/model/cbi/splash/splash.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/applications/luci-splash/luasrc/model/cbi/splash/splash.lua b/applications/luci-splash/luasrc/model/cbi/splash/splash.lua index e9d000f0d..145b16d5b 100644 --- a/applications/luci-splash/luasrc/model/cbi/splash/splash.lua +++ b/applications/luci-splash/luasrc/model/cbi/splash/splash.lua @@ -4,6 +4,8 @@ require("luci.model.uci") m = Map("luci_splash", "Client-Splash", [[Client-Splash ist das Freifunk Hotspot-Authentifizierungs-System.]]) s = m:section(NamedSection, "general", "core", "Allgemein") +s.addremove = false + s:option(Value, "leasetime", "Freigabezeit", "h") s:option(Value, "limit_up", "Upload-Limitierung", "Kilobyte/s - limitiert die Upload-Geschwindigkeit von Clients") |