[freeside-commits] branch master updated. ccdb2852a82946d7a9dca13345a390c31ea18d27
Ivan Kohler
ivan at freeside.biz
Wed May 11 09:27:48 PDT 2022
The branch, master has been updated
via ccdb2852a82946d7a9dca13345a390c31ea18d27 (commit)
from a8478341db106d63ae4114f0e94b4072394c073b (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 ccdb2852a82946d7a9dca13345a390c31ea18d27
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed May 11 09:27:47 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