From 387c96b0d8f224f3ade27bed9348f37b432bbb8a Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 31 Oct 2010 21:48:57 +0000 Subject: [PATCH] fix long package locations showing up as line item on typeset invoices, RT#10093 --- FS/FS/cust_bill.pm | 4 ++-- 1 file 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); } -- 2.11.0