summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2003-10-31 02:18:16 +0100
committerjocuri%softhome.net <>2003-10-31 02:18:16 +0100
commitcab44fa60a203f606e9dade398ff4489ec9d25e9 (patch)
tree868d7d21d3c82d348c07077359b531b533b140ad /globals.pl
parent5551973966d7a1f48419badcf49906e10afaef6e (diff)
downloadbugzilla-cab44fa60a203f606e9dade398ff4489ec9d25e9.tar.gz
bugzilla-cab44fa60a203f606e9dade398ff4489ec9d25e9.tar.xz
Bug 223937: web site error while updating email address; r=myk,kiko; a=justdave.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/globals.pl b/globals.pl
index f9d19609c..fd9595fbc 100644
--- a/globals.pl
+++ b/globals.pl
@@ -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);