diff options
| author | jeff <jeff> | 2009-12-01 19:17:37 +0000 | 
|---|---|---|
| committer | jeff <jeff> | 2009-12-01 19:17:37 +0000 | 
| commit | 6e7fff43136c356d24255896dff7df3fc4d8ee40 (patch) | |
| tree | ea4ce6b66ebf7742d024ce87ada03d7b3d047eec | |
| parent | 23a8839dda76d0e8491152736122b81dc454bab8 (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) = | 
