diff options
author | canyonknight <canyonknight@gmail.com> | 2012-10-09 16:37:18 -0400 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-11 21:19:16 +0200 |
commit | 24a8452880476201ab231b86f6a9cde1e74e107c (patch) | |
tree | 6494253ed1d439205e8074bd4f0ed7c9dbb7e3e3 /web/lib | |
parent | e9a02721181cf0633d1148b07e004f448df96078 (diff) | |
download | aurweb-24a8452880476201ab231b86f6a9cde1e74e107c.tar.xz |
Remove character limit on password length
As all new passwords are hashed and therefore stored in the database
at the same length, this limitation is no longer needed.
Fixes FS#31855
Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/config.inc.php.proto | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/web/lib/config.inc.php.proto b/web/lib/config.inc.php.proto index 3c7df19..f132445 100644 --- a/web/lib/config.inc.php.proto +++ b/web/lib/config.inc.php.proto @@ -15,7 +15,6 @@ define( "URL_DIR", "/packages/" ); define( "USERNAME_MIN_LEN", 3 ); define( "USERNAME_MAX_LEN", 16 ); define( "PASSWD_MIN_LEN", 4 ); -define( "PASSWD_MAX_LEN", 128 ); # Default language for displayed messages in the web interface. define("DEFAULT_LANG", "en"); |