diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-08 23:39:29 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-08 23:39:29 +0000 |
commit | a4996261eaa0b2057967e5eb855005a3403a6cb0 (patch) | |
tree | d2f91b52ccb09b45a12a4ce1111144f59ea25c22 /libs/web/luasrc/cbi.lua | |
parent | 875baa244a7bcc147fe16d8b9242a19f13bafe11 (diff) |
libs/web: remove debugging code
Diffstat (limited to 'libs/web/luasrc/cbi.lua')
-rw-r--r-- | libs/web/luasrc/cbi.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/web/luasrc/cbi.lua b/libs/web/luasrc/cbi.lua index e885e4e286..ef45a89563 100644 --- a/libs/web/luasrc/cbi.lua +++ b/libs/web/luasrc/cbi.lua @@ -1432,13 +1432,11 @@ function AbstractValue.validate(self, value) local v for _, v in ipairs(value) do if v and #v > 0 and not verify_datatype(self.datatype, v) then - error('F') return nil end end else if not verify_datatype(self.datatype, value) then - error('F') return nil end end |