Commit cab44fa6 authored by jocuri%softhome.net's avatar jocuri%softhome.net

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

parent 55519739
...@@ -445,8 +445,10 @@ sub GenerateRandomPassword { ...@@ -445,8 +445,10 @@ sub GenerateRandomPassword {
$size ||= 8; $size ||= 8;
# The list of characters that can appear in a randomly generated password. # 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. # Note that users can put any character into a password they choose
my @pwchars = (0..9, 'A'..'Z', 'a'..'z', '-', '_', '!', '@', '#', '$', '%', '^', '&', '*'); # themselves.
my @pwchars = (0..9, 'A'..'Z', 'a'..'z', '-', '_', '!', '@', '#', '$',
'%', '^', '*');
# The number of characters in the list. # The number of characters in the list.
my $pwcharslen = scalar(@pwchars); my $pwcharslen = scalar(@pwchars);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment