diff options
-rw-r--r-- | FS/FS/bill_batch.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/bill_batch.pm b/FS/FS/bill_batch.pm index 239341cf3..fcafc4dbe 100644 --- a/FS/FS/bill_batch.pm +++ b/FS/FS/bill_batch.pm @@ -65,7 +65,8 @@ sub print_pdf { qsearch('cust_bill_batch', { batchnum => $self->batchnum }); return "No invoices in batch ".$self->batchnum.'.' if !@invoices; - my $duplex = FS::Conf->exists('invoice_print_pdf-duplex'); + my $conf = FS::Conf->new; + my $duplex = $conf->exists('invoice_print_pdf-duplex'); my $pdf_out; my $num = 0; |