Commit a8cb9178 authored by terry%netscape.com's avatar terry%netscape.com

Check for undefined var.

parent 7613f7b0
......@@ -256,6 +256,9 @@ if (defined $::FORM{'sql'}) {
foreach my $id ("1", "2") {
if (!defined ($::FORM{"email$id"})) {
next;
}
my $email = trim($::FORM{"email$id"});
if ($email eq "") {
next;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment