* Major CBI improvements
[project/luci.git] / src / ffluci / model / cbi / admin_network / vlan.lua
index 6a01152..3186f2d 100644 (file)
@@ -1,12 +1,10 @@
+-- ToDo: Autodetect things, maybe use MultiValue instead, Translate, Add descriptions
 m = Map("network", "VLAN", "Konfguriert den Switch des Routers.")
 
 s = m:section(TypedSection, "switch")
 
--- ToDo: Autodetect things, maybe use MultiValue instead
 for i = 0, 15 do
-       local c = s:option(Value, "vlan"..i, "vlan"..i)
-       c.default = "5"
-       c.optional = true
+       s:option(Value, "vlan"..i, "vlan"..i).optional = true
 end
 
 return m
\ No newline at end of file