]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Make wording a little more clear when a username is invalid.
authorterry%mozilla.org <>
Fri, 14 Jan 2000 06:55:45 +0000 (06:55 +0000)
committerterry%mozilla.org <>
Fri, 14 Jan 2000 06:55:45 +0000 (06:55 +0000)
globals.pl

index 136fb8b0e1bb74e24930859c471c31a3f1f6ae6a..21acd00a64d5a7b64232a1070be4b6d5e83924ae 100644 (file)
@@ -452,8 +452,10 @@ sub DBNameToIdAndCheck {
         print "Yikes; couldn't create user $name.  Please report problem to " .
             Param("maintainer") ."\n";
     } else {
-        print "The name <TT>$name</TT> is not a valid username.  Please hit\n";
-        print "the <B>Back</B> button and try again.\n";
+        print "The name <TT>$name</TT> 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 "<P>Please hit the <B>Back</B> button and try again.\n";
     }
     exit(0);
 }