syntax typo fix (hopefully)

svn path=/branches/test/; revision=24147
This commit is contained in:
paul 2012-08-30 14:04:06 +00:00
parent 7a83a27d8a
commit 86517aa2c2
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ if (
and $email
and $address
and $specifics
and not $query->param("url");
and not $query->param("url")
) {
#send mail
@ -51,10 +51,10 @@ Your friendly automatic web order program.
";
close MAIL;
print "Location: /order/orderpromo-thanks.en.html\n\n"
print "Location: /order/orderpromo-thanks.en.html\n\n";
} else {
#something was wrong with the input
print "Location: /order/orderpromo-error.en.html\n\n"
print "Location: /order/orderpromo-error.en.html\n\n";
}