summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-09-02 06:39:20 +0200
committerlpsolit%gmail.com <>2005-09-02 06:39:20 +0200
commitde1f16178dcae2d517e849e45ee77fd3d636005c (patch)
tree757461a665f72fa131a8662b2daaff8999b84aa9 /Bugzilla/User.pm
parent7ce67eec4fb2c17ee3621b1aad2f99295ed4649f (diff)
downloadbugzilla-de1f16178dcae2d517e849e45ee77fd3d636005c.tar.gz
bugzilla-de1f16178dcae2d517e849e45ee77fd3d636005c.tar.xz
Bug 304582: Move GenerateRandomPassword() out of globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel a=myk
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index dfe207d7b..87f894752 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -1153,7 +1153,7 @@ sub insert_new_user {
$disabledtext ||= '';
# If not specified, generate a new random password for the user.
- $password ||= &::GenerateRandomPassword();
+ $password ||= generate_random_password();
my $cryptpassword = bz_crypt($password);
# XXX - These should be moved into is_available_username or validate_email_syntax