From: jocuri%softhome.net <> Date: Fri, 31 Oct 2003 01:26:17 +0000 (+0000) Subject: Bug 223937: web site error while updating email address; r=myk,kiko; a=justdave. X-Git-Tag: bugzilla-2.16.4~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa65628f1f2ad9c877979d2dcaf601896864468d;p=thirdparty%2Fbugzilla.git Bug 223937: web site error while updating email address; r=myk,kiko; a=justdave. --- diff --git a/globals.pl b/globals.pl index 791fccaba3..9a9a253674 100644 --- a/globals.pl +++ b/globals.pl @@ -729,8 +729,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);