summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-02-05 13:15:48 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-02-05 13:15:48 +0000
commitc6712bdc3c653d694d61bab01628f1621bcb73a3 (patch)
treec5ae9c5d8468a059170d0106aac5a51a6e8317b8 /libs/web/luasrc
parentf60197c15c8ba0ec26cacf2496aa784da25ffae8 (diff)
libs/web: allow '!' and '.' symbols in phonedigit datatype
Diffstat (limited to 'libs/web/luasrc')
-rw-r--r--libs/web/luasrc/cbi/datatypes.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/cbi/datatypes.lua b/libs/web/luasrc/cbi/datatypes.lua
index 32530c465a..c5f4ec0f0d 100644
--- a/libs/web/luasrc/cbi/datatypes.lua
+++ b/libs/web/luasrc/cbi/datatypes.lua
@@ -341,5 +341,5 @@ function maxlength(val, max)
end
function phonedigit(val)
- return (val:match("^[0-9\*#]+$") ~= nil)
+ return (val:match("^[0-9\*#!%.]+$") ~= nil)
end