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

Fixed: FS#3093 - PHPMyAdmin URL field does not accept uri symbols '?', '&' and '='

parent 39113e28
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,7 @@ $form["tabs"]['sites'] = array (
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'validators' => array ( 0 => array ( 'type' => 'REGEX',
'regex' => '/^[0-9a-zA-Z\:\/\-\.\_\[\]\?\=]{0,255}$/',
'regex' => '/^[0-9a-zA-Z\:\/\-\.\_\[\]\?\=\&]{0,255}$/',
'errmsg'=> 'phpmyadmin_url_error_regex'),
),
'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