mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Increased PASSWORD_MAX_LENGTH (#1510)
This commit is contained in:
parent
9940945824
commit
23d8864a9e
1 changed files with 3 additions and 3 deletions
|
@ -281,10 +281,10 @@ define('ACTKEY_LENGTH', 32);
|
|||
define('SID_LENGTH', 20);
|
||||
define('LOGIN_KEY_LENGTH', 32);
|
||||
define('USERNAME_MIN_LENGTH', 3);
|
||||
define('USERNAME_MAX_LENGTH', 25);
|
||||
define('USEREMAIL_MAX_LENGTH', 40);
|
||||
define('USERNAME_MAX_LENGTH', 30);
|
||||
define('USEREMAIL_MAX_LENGTH', 50);
|
||||
define('PASSWORD_MIN_LENGTH', 8);
|
||||
define('PASSWORD_MAX_LENGTH', 24);
|
||||
define('PASSWORD_MAX_LENGTH', 128);
|
||||
|
||||
define('PAGE_HEADER', INC_DIR . '/page_header.php');
|
||||
define('PAGE_FOOTER', INC_DIR . '/page_footer.php');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue