libs/web: add missing parts of previous commit
[project/luci.git] / libs / web / luasrc / cbi / datatypes.lua
index 3c768ab..93b29cb 100644 (file)
@@ -154,6 +154,10 @@ function host(val)
        return hostname(val) or ipaddr(val)
 end
 
+function network(val)
+       return uciname(val) or host(val)
+end
+
 function wpakey(val)
        if #val == 64 then
                return (val:match("^[a-fA-F0-9]+$") ~= nil)