From dd6720f4af864e29e49d26befe1ec1b04a92a71c Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sun, 9 Aug 2009 19:51:43 +0000 Subject: Bug 471620: USER_PASSWORD_MAX_LENGTH is no longer needed - Patch by Frédéric Buclin r=dkl a=LpSolit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/User.pm | 2 -- 1 file changed, 2 deletions(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 0eb47b8b3..ff486684b 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1706,8 +1706,6 @@ sub validate_password { if (length($password) < USER_PASSWORD_MIN_LENGTH) { ThrowUserError('password_too_short'); - } elsif (length($password) > USER_PASSWORD_MAX_LENGTH) { - ThrowUserError('password_too_long'); } elsif ((defined $matchpassword) && ($password ne $matchpassword)) { ThrowUserError('passwords_dont_match'); } -- cgit v1.2.3-24-g4f1b