From fb8dd2f32b6b06044a0350195a689245dc22b333 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 8 Jun 2018 09:37:26 +0200 Subject: [PATCH] FIX TCPDF is generated PDF 1.7 but TCPDI was setting version to 1.3 --- htdocs/includes/tcpdi/tcpdi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/includes/tcpdi/tcpdi.php b/htdocs/includes/tcpdi/tcpdi.php index 999ff99ea5b..675e2226b4a 100644 --- a/htdocs/includes/tcpdi/tcpdi.php +++ b/htdocs/includes/tcpdi/tcpdi.php @@ -135,7 +135,7 @@ class TCPDI extends FPDF_TPL { * * @return string */ - function setPDFVersion($version = '1.3') { + function setPDFVersion($version = '1.7') { $this->PDFVersion = $version; }