diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-08-04 12:02:13 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-04 13:24:19 -0400 |
commit | 9480fce915bad1ddedf859ca02ba929667653472 (patch) | |
tree | 6aa26755ed8be7f5c654106c485300a55bc7c227 | |
parent | 1b7f832fbc874c1c0b80d22589752a601ce39c18 (diff) |
RT# 74715 - fixed saving of census tract to actually save.
-rw-r--r-- | httemplate/edit/process/cust_location-censustract.html | 2 |
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 bc9cd4f31..ad5e8bab6 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> |