From 4b5ea4d4c085f668a6cbb1a861ba38fe31f0e072 Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" Date: Mon, 1 Apr 2002 03:00:12 +0000 Subject: [PATCH] Bug 134465 - Don't die() if the admin email address doesn't match the regexp. r=justdave x2 git-svn-id: svn://10.0.0.236/trunk@117832 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/checksetup.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/checksetup.pl b/mozilla/webtools/bugzilla/checksetup.pl index d98676073ae..bc8f9601e01 100755 --- a/mozilla/webtools/bugzilla/checksetup.pl +++ b/mozilla/webtools/bugzilla/checksetup.pl @@ -1678,7 +1678,10 @@ if ($sth->rows == 0) { unless ($login =~ /$mailcheckexp/) { print "\nThe login address is invalid:\n"; print "$mailcheck\n"; - die "Please try again\n"; + print "You can change this test on the params page once checksetup has successfully\n"; + print "completed.\n\n"; + # Go round, and ask them again + $login = ""; } } $login = $dbh->quote($login);