Skip to content
Snippets Groups Projects
Commit 0bfbaafe authored by Marius Cramer's avatar Marius Cramer
Browse files

Added: new validator ISASCII to forbid non-ascii characters

parent 2ed8f05c
No related branches found
No related tags found
No related merge requests found
......@@ -511,6 +511,15 @@ class remoting_lib {
}
}
break;
case 'ISASCII':
if(preg_match("/[^\x20-\x7F]/", $field_value)) {
$errmsg = $validator['errmsg'];
if(isset($this->wordbook[$errmsg])) {
$this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
} else {
$this->errorMessage .= $errmsg."<br />\r\n";
}
}
case 'ISEMAIL':
if(function_exists('filter_var')) {
if(filter_var($field_value, FILTER_VALIDATE_EMAIL) === false) {
......
......@@ -845,6 +845,15 @@ class tform {
}
}
break;
case 'ISASCII':
if(preg_match("/[^\x20-\x7F]/", $field_value)) {
$errmsg = $validator['errmsg'];
if(isset($this->wordbook[$errmsg])) {
$this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
} else {
$this->errorMessage .= $errmsg."<br />\r\n";
}
}
case 'ISEMAIL':
if(function_exists('filter_var')) {
if(filter_var($field_value, FILTER_VALIDATE_EMAIL) === false) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment