summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-08-19 09:06:00 +0200
committerterry%mozilla.org <>1999-08-19 09:06:00 +0200
commit1d971ce0a409d7d324c742cd54a0d67ca7132d55 (patch)
treece18375e5fd0a6d5ff3b7c187b36fc4f8dc80003 /CGI.pl
parent63dd4a061b87dcd1ccad7b8bc6b23721e09f2fef (diff)
downloadbugzilla-1d971ce0a409d7d324c742cd54a0d67ca7132d55.tar.gz
bugzilla-1d971ce0a409d7d324c742cd54a0d67ca7132d55.tar.xz
Patch by Chris Baldwin <chris.baldwin@siara.com> -- allow optional
entry of the user's realname. Note that nothing actually makes use of this info at present.
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index ad15503bf..a0a64fdad 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -385,7 +385,7 @@ sub confirm_login {
if (defined $::FORM{"PleaseMailAPassword"}) {
my $realpwd;
if ($realcryptpwd eq "") {
- $realpwd = InsertNewUser($enteredlogin);
+ $realpwd = InsertNewUser($enteredlogin, "");
} else {
SendSQL("select password from profiles where login_name = " .
SqlQuote($enteredlogin));