From fc6da409f24abe6818ddeaaa75e949da369885f1 Mon Sep 17 00:00:00 2001
From: "terry%mozilla.org" <>
Date: Sat, 8 May 1999 05:07:21 +0000
Subject: Oops. Accounts created via the "createaccount.cgi" page were not
getting their password emailed to them.
---
createaccount.cgi | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
(limited to 'createaccount.cgi')
diff --git a/createaccount.cgi b/createaccount.cgi
index c6bef90cf..3d1fa4c58 100755
--- a/createaccount.cgi
+++ b/createaccount.cgi
@@ -53,7 +53,8 @@ if (defined $login) {
print "the E-mail me a password button.\n";
exit;
}
- DBNameToIdAndCheck($login, 1);
+ my $password = InsertNewUser($login);
+ MailPassword($login, $password);
print "A bugzilla account for $login has been created. The\n";
print "password has been e-mailed to that address. When it is\n";
print "received, you may click\n";
--
cgit v1.2.3-24-g4f1b