From: Steven Barth Date: Sun, 2 Nov 2008 22:22:50 +0000 (+0000) Subject: Fixed new UVL options X-Git-Tag: 0.9.0~1024 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=9d67f6db0136d94aeff9ebc15fc5e4abee42b03a;hp=096ff297556af01baa27d558d9fe107fcdfba9d9 Fixed new UVL options --- diff --git a/libs/uvl/luasrc/uvl.lua b/libs/uvl/luasrc/uvl.lua index 8275dbbe1..28924a3cc 100644 --- a/libs/uvl/luasrc/uvl.lua +++ b/libs/uvl/luasrc/uvl.lua @@ -335,27 +335,32 @@ function UVL._validate_option( self, option, nodeps ) end end - if option:scheme('minlength') then - if #val < option:scheme('minlength') then - return false, option:error(ERR.OPT_RANGE(option)) + val = ( type(val) == "table" and val or { val } ) + for _, v in ipairs(val) do + if option:scheme('minlength') then + if #v < option:scheme('minlength') then + return false, option:error(ERR.OPT_RANGE(option)) + end end - end - - if option:scheme('maxlength') then - if #val > option:scheme('maxlength') then - return false, option:error(ERR.OPT_RANGE(option)) + + if option:scheme('maxlength') then + if #v > option:scheme('maxlength') then + return false, option:error(ERR.OPT_RANGE(option)) + end end - end - - if option:scheme('minimum') then - if val < option:scheme('minimum') then - return false, option:error(ERR.OPT_RANGE(option)) + + v = tonumber(v) + + if option:scheme('minimum') then + if not v or v < option:scheme('minimum') then + return false, option:error(ERR.OPT_RANGE(option)) + end end - end - - if option:scheme('maximum') then - if val > option:scheme('maximum') then - return false, option:error(ERR.OPT_RANGE(option)) + + if option:scheme('maximum') then + if not v or v > option:scheme('maximum') then + return false, option:error(ERR.OPT_RANGE(option)) + end end end