From 7f892832fb89f60f3228d22e393fa6c823be12b6 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Fri, 17 Oct 2003 01:26:09 +0000 Subject: Backing out patch from bug 108528 - failed to take i10n concerns into account --- CGI.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'CGI.pl') diff --git a/CGI.pl b/CGI.pl index 06db6fe55..bcd9a7f90 100644 --- a/CGI.pl +++ b/CGI.pl @@ -111,11 +111,10 @@ sub CheckFormField (\%$;\@) { sub CheckFormFieldDefined (\%$) { my ($formRef, # a reference to the form to check (a hash) $fieldname, # the fieldname to check - $info, # (optional) error message to give ) = @_; if (!defined $formRef->{$fieldname}) { - ThrowCodeError("undefined_field", { field => $fieldname, info => $info }); + ThrowCodeError("undefined_field", { field => $fieldname }); } } -- cgit v1.2.3-24-g4f1b