Skip to content
Snippets Groups Projects
Commit e99a7098 authored by Till Brehm's avatar Till Brehm
Browse files

Fixed: FS#3466 - Wrong validator regex for customer number template

parent 5332dc4d
No related branches found
No related tags found
No related merge requests found
...@@ -449,7 +449,7 @@ $form["tabs"]['misc'] = array ( ...@@ -449,7 +449,7 @@ $form["tabs"]['misc'] = array (
'datatype' => 'VARCHAR', 'datatype' => 'VARCHAR',
'formtype' => 'TEXT', 'formtype' => 'TEXT',
'validators' => array ( 0 => array ( 'type' => 'REGEX', 'validators' => array ( 0 => array ( 'type' => 'REGEX',
'regex' => '/^[a-zA-Z0-0\-\_\[\]]{0,50}$/', 'regex' => '/^[a-zA-Z0-9\-\_\[\]]{0,50}$/',
'errmsg'=> 'customer_no_template_error_regex'), 'errmsg'=> 'customer_no_template_error_regex'),
), ),
'default' => '', 'default' => '',
......
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