From d5a521725bd32c5c7a107284a50a2c26b99d3d9a Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Wed, 27 Apr 2011 09:21:22 +0200 Subject: [PATCH] 5.9.072 --- CHANGELOG.TXT | 3 +++ tcpdf.php | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index dc714d0..d4a14b7 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -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). diff --git a/tcpdf.php b/tcpdf.php index 7ac77d5..960f698 100755 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,9 +1,9 @@ * @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.
* @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 = ' '; }