fix use of FS::Conf, #29927
authorMark Wells <mark@freeside.biz>
Thu, 19 Mar 2015 23:02:08 +0000 (16:02 -0700)
committerMark Wells <mark@freeside.biz>
Thu, 19 Mar 2015 23:02:08 +0000 (16:02 -0700)
FS/FS/bill_batch.pm

index 239341c..fcafc4d 100644 (file)
@@ -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;