diff options
| -rw-r--r-- | FS/FS/cust_bill.pm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 0cf052682..a7eb9f64a 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -4098,7 +4098,7 @@ sub _items_cust_bill_pkg {                           $cust_pkg->h_labels_short($self->_date);              if ( $multilocation ) {                my $loc = $cust_pkg->location_label; -              $loc = substr($desc, 0, 50). '...' +              $loc = substr($loc, 0, 50). '...'                  if $format eq 'latex' && length($loc) > 50;                push @d, &{$escape_function}($loc);              } @@ -4158,7 +4158,7 @@ sub _items_cust_bill_pkg {              ;              if ( $multilocation ) {                my $loc = $cust_pkg->location_label; -              $loc = substr($desc, 0, 50). '...' +              $loc = substr($loc, 0, 50). '...'                  if $format eq 'latex' && length($loc) > 50;                push @d, &{$escape_function}($loc);              } | 
