diff options
author | preed%sigkill.com <> | 2003-07-18 07:57:59 +0200 |
---|---|---|
committer | preed%sigkill.com <> | 2003-07-18 07:57:59 +0200 |
commit | 4e00caf646f94f443477997991c9775a51d6d6d7 (patch) | |
tree | b0a3e355d46e60d9b41befba167e679d4b3e0332 | |
parent | fa4b44c6e7b9addb051daa03b0e1a9539a0284ab (diff) | |
download | bugzilla-4e00caf646f94f443477997991c9775a51d6d6d7.tar.gz bugzilla-4e00caf646f94f443477997991c9775a51d6d6d7.tar.xz |
Bug 147480 - Lack of newlines when asking for password in checksetup.pl. Patch by jocuri@softhome.net (Vlad Dascalu), r=kiko, a=justdave
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index ee945653b..08583f82e 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3887,7 +3887,7 @@ if ($sth->rows == 0) { if(! $pass1 ) { print "\n\nIt's just plain stupid to not have a password. Try again!\n"; } elsif ( $pass1 !~ /^.{3,16}$/ ) { - print "The password must be 3-16 characters in length."; + print "\n\nThe password must be 3-16 characters in length.\n"; } } print "\nPlease retype the password to verify: "; |