diff options
author | justdave%syndicomm.com <> | 2001-05-11 03:16:51 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-05-11 03:16:51 +0200 |
commit | 0776fda7ed23e82f3d09ccabb603e1d4f26f9d42 (patch) | |
tree | 7c91ab2e1ed5284225a562215b6d0e558e36b48f | |
parent | f3f3e0055b5c02c1ffb547f816d12b8e4c2a7436 (diff) | |
download | bugzilla-0776fda7ed23e82f3d09ccabb603e1d4f26f9d42.tar.gz bugzilla-0776fda7ed23e82f3d09ccabb603e1d4f26f9d42.tar.xz |
Fix for bug 80045: 500 Server Error in IE (but not Netscape or Mozilla) on errors looking up email addresses.
Patch by <jake@acutex.net>
r= justdave@syndicomm.com
-rw-r--r-- | globals.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/globals.pl b/globals.pl index 33ecd3221..34b84c582 100644 --- a/globals.pl +++ b/globals.pl @@ -666,6 +666,7 @@ sub DBNameToIdAndCheck { print "Yikes; couldn't create user $name. Please report problem to " . Param("maintainer") ."\n"; } else { + print "\n"; # http://bugzilla.mozilla.org/show_bug.cgi?id=80045 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"; |