summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2022-05-11 09:27:47 -0700
committerIvan Kohler <ivan@freeside.biz>2022-05-11 09:27:47 -0700
commitccdb2852a82946d7a9dca13345a390c31ea18d27 (patch)
treed9b06f533f25ec11e87502d12d4bd36b90c02cec /httemplate
parenta8478341db106d63ae4114f0e94b4072394c073b (diff)
quiet CGI param warning
Diffstat (limited to 'httemplate')
-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 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;
</%init>