From 4a826597546477c5f3a6857d1851721568858403 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 19 Mar 2015 16:02:08 -0700 Subject: [PATCH] fix use of FS::Conf, #29927 --- FS/FS/bill_batch.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.20.1