diff options
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 2 | ||||
-rw-r--r-- | FS/FS/Misc/Geo.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 990f2a3be..6b7dbe0d3 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -4282,7 +4282,6 @@ and customer address. Include units.', 'section' => 'invoicing', 'description' => 'Instead of showing payments (and credits) applied to the invoice, show those received since the previous invoice date.', 'type' => 'checkbox', - 'uscensus' => 'U.S. Census Bureau', }, { @@ -4316,6 +4315,7 @@ and customer address. Include units.', 'type' => 'select', 'select_hash' => [ '' => '', 'usps' => 'U.S. Postal Service', + 'uscensus' => 'U.S. Census Bureau', 'tomtom' => 'TomTom', 'melissa' => 'Melissa WebSmart', ], diff --git a/FS/FS/Misc/Geo.pm b/FS/FS/Misc/Geo.pm index 1aa593974..293748c7a 100644 --- a/FS/FS/Misc/Geo.pm +++ b/FS/FS/Misc/Geo.pm @@ -342,7 +342,7 @@ sub standardize_uscensus { die "Geocoding did not find a matching address.\n"; } else { warn Dumper($result) if $DEBUG; - die $result->error_message; + die $result->error_message."\n"; } } |