]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 223937: web site error while updating email address; r=myk,kiko; a=justdave.
authorjocuri%softhome.net <>
Fri, 31 Oct 2003 01:18:16 +0000 (01:18 +0000)
committerjocuri%softhome.net <>
Fri, 31 Oct 2003 01:18:16 +0000 (01:18 +0000)
globals.pl

index f9d19609c940ba7d395e543f33d189feaf835a60..fd9595fbce880fa79bd3adcbdfbbade0bb79d7c9 100644 (file)
@@ -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);