mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-22 04:45:17 +00:00
6.0.001 (2013-03-18)
- Fixed call on tcpdf.php.
This commit is contained in:
parent
c55727d0bd
commit
b0b066c14d
@ -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.
|
||||
|
@ -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:
|
||||
|
@ -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.
|
||||
|
10
tcpdf.php
10
tcpdf.php
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
//============================================================+
|
||||
// File name : tcpdf.php
|
||||
// Version : 6.0.000
|
||||
// Version : 6.0.001
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2013-03-17
|
||||
// Last Update : 2013-03-18
|
||||
// Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com
|
||||
// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3
|
||||
// -------------------------------------------------------------------
|
||||
@ -139,7 +139,7 @@
|
||||
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
||||
* @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.<br>
|
||||
* @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 {
|
||||
|
Loading…
Reference in New Issue
Block a user