Gossamer Forum
Home : Products : Others : Gossamer Community :

Re: [catlovette] Username and password length

Quote Reply
Re: [catlovette] Username and password length In reply to
In Reply To:
Aaaaaaaaaaaarrrrrrrrrrrrrrrrrr Frown

Hey calm down Wink

Here what we have in: ../lib/Community/User.pm around line 237

Code:
sub cuser_pw_validate_error {
# -------------------------------------------------------------------
my $password = shift;
$password =~ /^\s*$/ and return 'SIGNUP_PASSWORD_MISSING';
length($password) < 4 and return 'SIGNUP_PASSWORD_TOOSHORT';
return '';
}

These sholud do the job for you Tongue

zaaron

---------
GetLokal Reviews
Subject Author Views Date
Thread Username and password length nathanx 4253 May 28, 2004, 1:00 AM
Thread Re: [catlovette] Username and password length
nathanx 4171 May 31, 2004, 10:01 AM
Thread Re: [catlovette] Username and password length
nathanx 4150 Jun 25, 2004, 3:39 AM
Thread Re: [catlovette] Username and password length
zaaron 4141 Jun 25, 2004, 4:36 AM
Thread Re: [zaaron] Username and password length
nathanx 4122 Jun 27, 2004, 10:49 AM
Post Re: [catlovette] Username and password length
nathanx 4114 Jul 7, 2004, 2:44 AM