From c48a3403e36f66c7fb0e12935b85f6fa1d1733be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Thu, 22 Feb 2018 00:03:28 +0100 Subject: [PATCH] Fixed Error when Signature Server is not running --- content/pdfExport.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/pdfExport.php b/content/pdfExport.php index 53fd18fdd..14b481191 100644 --- a/content/pdfExport.php +++ b/content/pdfExport.php @@ -411,7 +411,10 @@ else if ($dokument->create($output)) $doc = $dokument->output(false); else + { + $errormsg = $dokument->errormsg; $error = true; + } $dokument->close();