summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2022-05-11 09:27:50 -0700
committerIvan Kohler <ivan@freeside.biz>2022-05-11 09:27:50 -0700
commit1b62faeb0aa8734211c16fbac648d37cbda7c434 (patch)
tree5d3277d1e84a428a67ae57500eda053e67c85e61
parent07b991ecb46bd8e7a37e98013c2776bdace9ab61 (diff)
quiet CGI param warning
-rw-r--r--httemplate/edit/process/cust_location-censustract.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/cust_location-censustract.html b/httemplate/edit/process/cust_location-censustract.html
index 40c83c6..1bf4d76 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;
</%init>