Ensure a password can't contain a "/"
This commit is contained in:
parent
d63150c4ce
commit
a200ccfdeb
1 changed files with 5 additions and 0 deletions
|
@ -720,6 +720,11 @@ class PasswordInputFormField extends FormField {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
if(!preg_match('#.*[/]+.*#',$this->value)==0){
|
||||
if($set_error) $this->error = 'Votre mot de passe doit contenir le caractère \'/\'';
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue