]> 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:26:17 +0000 (01:26 +0000)
committerjocuri%softhome.net <>
Fri, 31 Oct 2003 01:26:17 +0000 (01:26 +0000)
globals.pl

index 791fccaba373bdfee45f8336e0eebcda27ad6c23..9a9a2536741ff09e9f764152b291f62e2db56396 100644 (file)
@@ -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);