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=b226bc6bd81f999176cdbfa53a799033ff0a0307 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 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;