From: Christopher Burger Date: Fri, 4 Aug 2017 16:02:13 +0000 (-0400) Subject: RT# 74715 - fixed saving of census tract to actually save. X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=9480fce915bad1ddedf859ca02ba929667653472 RT# 74715 - fixed saving of census tract to actually save. --- 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;