[freeside-commits] branch FREESIDE_4_BRANCH updated. 1b62faeb0aa8734211c16fbac648d37cbda7c434
Ivan Kohler
ivan at freeside.biz
Wed May 11 09:27:51 PDT 2022
The branch, FREESIDE_4_BRANCH has been updated
via 1b62faeb0aa8734211c16fbac648d37cbda7c434 (commit)
from 07b991ecb46bd8e7a37e98013c2776bdace9ab61 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1b62faeb0aa8734211c16fbac648d37cbda7c434
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed May 11 09:27:50 2022 -0700
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;
</%init>
-----------------------------------------------------------------------
Summary of changes:
httemplate/edit/process/cust_location-censustract.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the freeside-commits
mailing list