From 24a8452880476201ab231b86f6a9cde1e74e107c Mon Sep 17 00:00:00 2001 From: canyonknight Date: Tue, 9 Oct 2012 16:37:18 -0400 Subject: 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 Signed-off-by: Lukas Fleischer --- web/lib/config.inc.php.proto | 1 - 1 file changed, 1 deletion(-) (limited to 'web/lib/config.inc.php.proto') diff --git a/web/lib/config.inc.php.proto b/web/lib/config.inc.php.proto index 3c7df195..f1324458 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"); -- cgit v1.2.3-24-g4f1b