X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Frate_region.pm;h=0e65223020237ccdda61801775742c76bb335a74;hb=7f5e32275a5a2674fd1d220cd651b222b9831476;hp=df3951f8b39082410c5a58046a8b2a14fa357e75;hpb=a7f1c52780340da144f8eab67a8fef8170641963;p=freeside.git diff --git a/FS/FS/rate_region.pm b/FS/FS/rate_region.pm index df3951f8b..0e6522302 100644 --- a/FS/FS/rate_region.pm +++ b/FS/FS/rate_region.pm @@ -287,12 +287,13 @@ sub prefixes_short { } my $npa = $rate_prefix->npa; if ( $countrycode eq '1' ) { - $out .= '('. substr( $npa, 0, 3 ). ')'; + #$out .= '('. substr( $npa, 0, 3 ). ')'; + $out .= substr( $npa, 0, 3 ); $out .= ' '. substr( $npa, 3 ) if length($npa) > 3; } else { $out .= $rate_prefix->npa; } - $out .= ' '. $rate_prefix->nxx if $rate_prefix->nxx; + $out .= '-'. $rate_prefix->nxx if $rate_prefix->nxx; $out .= ', '; } $out =~ s/, $//;