diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-08-04 12:02:13 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-04 12:54:04 -0400 |
commit | c2e4f6eda47eb25d9591012bf1f8bb0a8327a8b7 (patch) | |
tree | 19328b0c914b23762108479094ed47efc90d2454 | |
parent | b1bee8666faf742f0f148b29f255644e7e7a6af2 (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 f2daa89d0..40c83c630 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> |