mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-22 12:55:10 +00:00
5.9.072
This commit is contained in:
parent
dc1cbbd5df
commit
d5a521725b
@ -1,3 +1,6 @@
|
||||
5.9.073 (2011-04-27)
|
||||
- A bug related to character entities on HTML cells was fixed.
|
||||
|
||||
5.9.072 (2011-04-26)
|
||||
- Method resetColumns() was added to remove multiple columns and reset page margins (example n. 10 was updated).
|
||||
|
||||
|
12
tcpdf.php
12
tcpdf.php
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
//============================================================+
|
||||
// File name : tcpdf.php
|
||||
// Version : 5.9.072
|
||||
// Version : 5.9.073
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2011-04-26
|
||||
// Last Update : 2011-04-27
|
||||
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS.
|
||||
// -------------------------------------------------------------------
|
||||
@ -134,7 +134,7 @@
|
||||
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @author Nicola Asuni
|
||||
* @version 5.9.072
|
||||
* @version 5.9.073
|
||||
*/
|
||||
|
||||
// Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file.
|
||||
@ -146,7 +146,7 @@ require_once(dirname(__FILE__).'/config/tcpdf_config.php');
|
||||
* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @brief PHP class for generating PDF documents without requiring external extensions.
|
||||
* @version 5.9.072
|
||||
* @version 5.9.073
|
||||
* @author Nicola Asuni - info@tecnick.com
|
||||
*/
|
||||
class TCPDF {
|
||||
@ -157,7 +157,7 @@ class TCPDF {
|
||||
* Current TCPDF version.
|
||||
* @private
|
||||
*/
|
||||
private $tcpdf_version = '5.9.072';
|
||||
private $tcpdf_version = '5.9.073';
|
||||
|
||||
// Protected properties
|
||||
|
||||
@ -20272,7 +20272,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
|
||||
$cellh = 0;
|
||||
}
|
||||
if (isset($dom[$key]['content'])) {
|
||||
$cell_content = stripslashes($this->unhtmlentities($dom[$key]['content']));
|
||||
$cell_content = stripslashes($dom[$key]['content']);
|
||||
} else {
|
||||
$cell_content = ' ';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user