From 037203eb43e0c58246188c5d0c15adf1a24e8e71 Mon Sep 17 00:00:00 2001 From: levinse Date: Mon, 11 Apr 2011 07:19:32 +0000 Subject: [PATCH] possibly fix spurious error from cust_bill.pm related to barcode files when barcodes are turned off --- FS/FS/cust_bill.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 3944404a8..1ffb94a6c 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -3306,7 +3306,7 @@ sub print_ps { my ($file, $logofile, $barcodefile) = $self->print_latex(@_); my $ps = generate_ps($file); unlink($logofile); - unlink($barcodefile); + unlink($barcodefile) if $barcodefile; $ps; } @@ -3335,7 +3335,7 @@ sub print_pdf { my ($file, $logofile, $barcodefile) = $self->print_latex(@_); my $pdf = generate_pdf($file); unlink($logofile); - unlink($barcodefile); + unlink($barcodefile) if $barcodefile; $pdf; } -- 2.20.1