Browse Source

FIX TCPDF is generated PDF 1.7 but TCPDI was setting version to 1.3

Laurent Destailleur 7 years ago
parent
commit
fb8dd2f32b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      htdocs/includes/tcpdi/tcpdi.php

+ 1 - 1
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;
 	}