From: Ivan Kohler Date: Wed, 11 May 2022 16:27:47 +0000 (-0700) Subject: quiet CGI param warning X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=ccdb2852a82946d7a9dca13345a390c31ea18d27 quiet CGI param warning --- 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;