diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 80a7dfe..3e77617 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +6.0.001 (2013-03-18) + - Fixed $uni_type call on tcpdf.php. + 6.0.000 (2013-03-17) - IMPORTANT: PHP4 support has been removed starting from this version. PHP 5.3 or greater version is required. - Several TCPDF methods and vars were moved to new class files: tcpdf_static.php, tcpdf_colors.php, tcpdf_images.php, tcpdf_font_data.php, tcpdf_fonts.php. diff --git a/README.TXT b/README.TXT index c8f6153..bbde577 100755 --- a/README.TXT +++ b/README.TXT @@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 6.0.000 -Release date: 2013-03-17 +Version: 6.0.001 +Release date: 2013-03-18 Author: Nicola Asuni Copyright (c) 2002-2013: diff --git a/include/tcpdf_static.php b/include/tcpdf_static.php index 6a83d76..0b4f412 100644 --- a/include/tcpdf_static.php +++ b/include/tcpdf_static.php @@ -55,7 +55,7 @@ class TCPDF_STATIC { * Current TCPDF version. * @private static */ - private static $tcpdf_version = '6.0.000'; + private static $tcpdf_version = '6.0.001'; /** * String alias for total number of pages. diff --git a/tcpdf.php b/tcpdf.php index 0e94200..d52efa7 100755 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 6.0.000 + * @version 6.0.001 */ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { @@ -168,7 +168,7 @@ require_once(dirname(__FILE__).'/include/tcpdf_static.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 6.0.000 + * @version 6.0.001 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { @@ -21838,7 +21838,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: $unichars = TCPDF_FONTS::UTF8StringToArray($text, $this->CurrentFont); // for each char foreach ($unichars as $char) { - if ((!$intag) AND TCPDF_FONTS::$uni_type[$char] == 'L') { + if ((!$intag) AND TCPDF_FONT_DATA::$uni_type[$char] == 'L') { // letter character $word[] = $char; } else {