Bug 223937: web site error while updating email address; r=myk,kiko; a=justdave.

This commit is contained in:
jocuri%softhome.net 2003-10-30 17:18:16 +00:00
Родитель 96e23bf6a9
Коммит 8126d48aa6
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -445,8 +445,10 @@ sub GenerateRandomPassword {
$size ||= 8;
# The list of characters that can appear in a randomly generated password.
# Note that users can put any character into a password they choose themselves.
my @pwchars = (0..9, 'A'..'Z', 'a'..'z', '-', '_', '!', '@', '#', '$', '%', '^', '&', '*');
# Note that users can put any character into a password they choose
# themselves.
my @pwchars = (0..9, 'A'..'Z', 'a'..'z', '-', '_', '!', '@', '#', '$',
'%', '^', '*');
# The number of characters in the list.
my $pwcharslen = scalar(@pwchars);