X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/d232a24687ea63a0f57723b7730d82f12241cec9..38bb9635fde8c2821c23da931bcb6acba8e4b8be:/SL/Template/HTML.pm?ds=sidebyside diff --git a/SL/Template/HTML.pm b/SL/Template/HTML.pm index 09f24fceb..ecc3410a8 100644 --- a/SL/Template/HTML.pm +++ b/SL/Template/HTML.pm @@ -70,7 +70,9 @@ sub convert_to_postscript { $psfile .= ".ps"; } - system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} > $psfile"); + if (system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} > $psfile") == -1) { + die "system call to $::lx_office_conf{applications}->{html2ps} failed: $!"; + } if ($?) { $self->{"error"} = $form->cleanup($::lx_office_conf{applications}->{html2ps}); return 0; @@ -102,7 +104,9 @@ sub convert_to_pdf { $pdffile .= ".pdf"; } - system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} | ps2pdf - $pdffile"); + if (system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} | ps2pdf - $pdffile") == -1) { + die "system call to $::lx_office_conf{applications}->{html2ps} failed: $!"; + } if ($?) { $self->{"error"} = $form->cleanup($::lx_office_conf{applications}->{html2ps}); return 0;