Do not check password minimal length
This commit is contained in:
parent
18d958858b
commit
7a0d14f23d
|
@ -41,7 +41,7 @@ else
|
|||
{
|
||||
messageShow($prompt_template, 'Username has incorrect format ... Please try again');
|
||||
}
|
||||
elseif (strlen($_POST['password']) > 64 || strlen($_POST['password']) <= 7)
|
||||
elseif (strlen($_POST['password']) > 64)
|
||||
{
|
||||
messageShow($prompt_template, 'Password has incorrect format ... Please try again');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue