summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-08-04 12:02:13 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-08-04 12:02:13 -0400
commitb226bc6bd81f999176cdbfa53a799033ff0a0307 (patch)
treef3314627f2dae5f926eaa97a1117b73d7eb33efb
parenta9e3c2ea4635e066f1aabcac4a91ee75cdf22ebd (diff)
RT# 74715 - fixed saving of census tract to actually save.
-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 f2daa89..40c83c6 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('censustract'));
+$cust_location->set('censustract', $cgi->param('enter_censustract'));
my $error = $cust_location->replace;
</%init>