From ccdb2852a82946d7a9dca13345a390c31ea18d27 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 11 May 2022 09:27:47 -0700 Subject: [PATCH] quiet CGI param warning --- httemplate/edit/process/cust_location-censustract.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httemplate/edit/process/cust_location-censustract.html b/httemplate/edit/process/cust_location-censustract.html index 40c83c630..1bf4d7682 100644 --- a/httemplate/edit/process/cust_location-censustract.html +++ b/httemplate/edit/process/cust_location-censustract.html @@ -28,7 +28,7 @@ my $cust_location = qsearchs({ }); die "unknown locationnum $locationnum" unless $cust_location; -$cust_location->set('censustract', $cgi->param('enter_censustract')); +$cust_location->set('censustract', scalar($cgi->param('enter_censustract'))); my $error = $cust_location->replace; -- 2.11.0