diff options
author | cyeh%bluemartini.com <> | 2001-03-10 06:41:27 +0100 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2001-03-10 06:41:27 +0100 |
commit | 691b068eedd9f61472e268c7e633f21bfb72ca78 (patch) | |
tree | 5ccc9ae6110bbc2f8ab03d1e86228634413e538a | |
parent | 1a02e681d90e1d30f386ab88da9bdfca57c472ce (diff) | |
download | bugzilla-691b068eedd9f61472e268c7e633f21bfb72ca78.tar.gz bugzilla-691b068eedd9f61472e268c7e633f21bfb72ca78.tar.xz |
refix for 40603: Assumes user is coming from different page
reduce wording
-rwxr-xr-x | createaccount.cgi | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/createaccount.cgi b/createaccount.cgi index 2ff2c0b1f..c2358d6fd 100755 --- a/createaccount.cgi +++ b/createaccount.cgi @@ -68,10 +68,8 @@ if (defined $login) { PutHeader("Account created"); my $password = InsertNewUser($login, $realname); MailPassword($login, $password); - print "A bugzilla account for <tt>$login</tt> has been created. The\n"; - print "password has been e-mailed to that address. When it is\n"; - print "received, you may <a href=query.cgi?GoAheadAndLogIn>click\n"; - print "here</a> and log in."; + print " You can also <a href=query.cgi?GoAheadAndLogIn>click\n"; + print "here</a> to log in for the first time."; PutFooter(); exit; } |