fix long package locations showing up as line item on typeset invoices, RT#10093
authorivan <ivan>
Sun, 31 Oct 2010 21:48:57 +0000 (21:48 +0000)
committerivan <ivan>
Sun, 31 Oct 2010 21:48:57 +0000 (21:48 +0000)
FS/FS/cust_bill.pm

index 0cf0526..a7eb9f6 100644 (file)
@@ -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);
             }