diff options
author | jeff <jeff> | 2009-12-30 06:06:12 +0000 |
---|---|---|
committer | jeff <jeff> | 2009-12-30 06:06:12 +0000 |
commit | 96eb59da15f46c0e69abd19945a46766df3474a3 (patch) | |
tree | 58294d3a4d010151d069a55ba7c5bdf10ce1e7df | |
parent | f756d517b6dedf0c6646789b3579c2e182a16a90 (diff) |
noise reduction
-rw-r--r-- | FS/FS/cust_main.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index c5e5ba0e6..b40f18afb 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -7875,7 +7875,8 @@ sub geocode { ? 'ship_' : ''; - my ($zip,$plus4) = split /-/, $self->get("${prefix}zip") + my ($zip,$plus4) = ( '', '' ); + ($zip,$plus4) = split /-/, $self->get("${prefix}zip") if $self->country eq 'US'; #CCH specific location stuff |