From: terry%mozilla.org <> Date: Fri, 14 Jan 2000 06:55:45 +0000 (+0000) Subject: Make wording a little more clear when a username is invalid. X-Git-Tag: bugzilla-2.12~475 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cb57c4587155d9f2b32fee10e26c7addae59a5a;p=thirdparty%2Fbugzilla.git Make wording a little more clear when a username is invalid. --- diff --git a/globals.pl b/globals.pl index 136fb8b0e1..21acd00a64 100644 --- a/globals.pl +++ b/globals.pl @@ -452,8 +452,10 @@ sub DBNameToIdAndCheck { print "Yikes; couldn't create user $name. Please report problem to " . Param("maintainer") ."\n"; } else { - print "The name $name is not a valid username. Please hit\n"; - print "the Back button and try again.\n"; + print "The name $name is not a valid username. Either you\n"; + print "misspelled it, or the person has not registered for a\n"; + print "Bugzilla account.\n"; + print "
Please hit the Back button and try again.\n"; } exit(0); }