diff options
| author | jeff <jeff> | 2009-12-01 19:16:39 +0000 | 
|---|---|---|
| committer | jeff <jeff> | 2009-12-01 19:16:39 +0000 | 
| commit | 6f5ff90236e8eb939766c64bf49407da4da5bdfb (patch) | |
| tree | f17d5cd7e2284e7cc966c7655166f5d1bffde44a | |
| parent | 500254407a38f459a2a8df720c07f28566985dfd (diff) | |
want a listref not a list
| -rw-r--r-- | FS/FS/cust_bill.pm | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index cbb3107d7..af70add4a 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -2486,7 +2486,7 @@ sub print_generic {    my $unsquelched = $params{unsquelch_cdr} || $cust_main->squelch_cdr ne 'Y';    my $multisection = $conf->exists('invoice_sections', $cust_main->agentnum);    my $late_sections = []; -  my $extra_sections = (); +  my $extra_sections = [];    my $extra_lines = ();    if ( $multisection ) {      ($extra_sections, $extra_lines) = | 
