User/Passwords
* allow for passwords longer than 15 characters
This commit is contained in:
parent
c3fe4b0224
commit
eddb034a5c
1 changed files with 1 additions and 1 deletions
|
|
@ -382,7 +382,7 @@ class User
|
|||
{
|
||||
$errCode = 0;
|
||||
|
||||
if (strlen($pass) < 6 || strlen($pass) > 16)
|
||||
if (mb_strlen($pass) < 6)
|
||||
$errCode = 1;
|
||||
// else if (preg_match('/[^\w\d!"#\$%]/', $pass)) // such things exist..? :o
|
||||
// $errCode = 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue