diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-09-19 12:44:44 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-09-19 12:44:44 -0700 |
commit | b3be12cf4ebf8d160b3531153eaaf09bf011f8d0 (patch) | |
tree | 66097878922f8feaf440458dccddb289ebf84f11 | |
parent | 7156d7758f03979e266617e033b1c0870ba3ad98 (diff) |
don't send zip+4 to vitelity e911, RT#76262
-rw-r--r-- | FS/FS/part_export/vitelity.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/part_export/vitelity.pm b/FS/FS/part_export/vitelity.pm index 51bb0aab1..574592ff8 100644 --- a/FS/FS/part_export/vitelity.pm +++ b/FS/FS/part_export/vitelity.pm @@ -410,6 +410,7 @@ sub e911_send { return '' if $self->option('disable_e911'); my %location = $svc_phone->location_hash; + $location{'zip'} =~ s/\-\d{4}$//; my %e911send = ( 'did' => $svc_phone->phonenum, 'name' => $svc_phone->phone_name_or_cust, |