From 801cd481b579d387dbe21266c717ef5d0b9aa422 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Tue, 2 Dec 2014 15:43:34 -0800 Subject: when address standardization returns a censustract, don't try to look it up through FFIEC also, #32459 --- httemplate/misc/xmlhttp-address_standardize.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'httemplate/misc/xmlhttp-address_standardize.html') diff --git a/httemplate/misc/xmlhttp-address_standardize.html b/httemplate/misc/xmlhttp-address_standardize.html index 618265364..d0255a02a 100644 --- a/httemplate/misc/xmlhttp-address_standardize.html +++ b/httemplate/misc/xmlhttp-address_standardize.html @@ -43,6 +43,10 @@ foreach my $pre ( @prefixes ) { last if !$all_same; } + $all_same = 0 if ( length( $old{$pre.'censustract'} ) > 0 && + length( $new{$pre.'censustract'} ) > 0 && + $old{$pre.'censustract'} ne $new{$pre.'censustract'} ); + $all_same = 0 if $new{$pre.'error'}; } -- cgit v1.2.1