luci-0.9: merge r5952
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 27 Mar 2010 17:42:00 +0000 (17:42 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 27 Mar 2010 17:42:00 +0000 (17:42 +0000)
modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua

index f71561d..a411b04 100644 (file)
@@ -65,7 +65,7 @@ m.uci:foreach("network", "switch",
                end
 
                s.create = function(self, section)
-                       local n = tonumber(section)
+                       local n = tonumber(section and section:match("(%d+)"))
                        if n ~= nil and n >= 0 then
                                local sn = "%s_%d" %{ x['.name'], n }
                                local rv = TypedSection.create(self, sn)