diff options
| author | ivan <ivan> | 2012-02-12 21:03:19 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2012-02-12 21:03:19 +0000 |
| commit | bf930330f7682ffaa7bafb28e083dd4892a6c721 (patch) | |
| tree | d7e3573d61c6b6da34ba35a452ec3e57c8ddea85 /FS | |
| parent | 308d5fa31ae6abf84392f940587e3f0902d78ffa (diff) | |
prevent re-geocoding problems from overzealous replace checks, prevent unnecessary fuzzyfile updates, RT#15381
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/cust_main.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 0cd2d2523..fe6230744 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -4987,6 +4987,10 @@ sub process_censustract_update { $cust_main->set('censustract', $new_tract); $cust_main->set('censusyear', $new_year); + local($ignore_expired_card) = 1; + local($ignore_illegal_zip) = 1; + local($ignore_banned_card) = 1; + local($skip_fuzzyfiles) = 1; local($import) = 1; #prevent automatic geocoding (need its own variable?) my $error = $cust_main->replace; die $error if $error; |
