mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-10 15:20:59 +00:00
5.9.036
This commit is contained in:
parent
074477d870
commit
4e969374fe
@ -1,3 +1,6 @@
|
||||
5.9.036 (2011-01-07)
|
||||
- A bug related to HTML tables on header was fixed.
|
||||
|
||||
5.9.035 (2011-01-03)
|
||||
- A problem related to HTML table border alignment was fixed.
|
||||
- Bug #2996366 "FastCGI and Header Problems" was fixed.
|
||||
|
@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
|
||||
------------------------------------------------------------
|
||||
|
||||
Name: TCPDF
|
||||
Version: 5.9.035
|
||||
Release date: 2011-01-03
|
||||
Version: 5.9.036
|
||||
Release date: 2011-01-07
|
||||
Author: Nicola Asuni
|
||||
|
||||
Copyright (c) 2002-2011:
|
||||
|
14
tcpdf.php
14
tcpdf.php
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
//============================================================+
|
||||
// File name : tcpdf.php
|
||||
// Version : 5.9.035
|
||||
// Version : 5.9.036
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2011-01-03
|
||||
// Last Update : 2011-01-07
|
||||
// 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.035
|
||||
* @version 5.9.036
|
||||
*/
|
||||
|
||||
// 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.035
|
||||
* @version 5.9.036
|
||||
* @author Nicola Asuni - info@tecnick.com
|
||||
*/
|
||||
class TCPDF {
|
||||
@ -157,7 +157,7 @@ class TCPDF {
|
||||
* Current TCPDF version.
|
||||
* @private
|
||||
*/
|
||||
private $tcpdf_version = '5.9.035';
|
||||
private $tcpdf_version = '5.9.036';
|
||||
|
||||
// Protected properties
|
||||
|
||||
@ -19872,7 +19872,9 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
|
||||
} else {
|
||||
$pask = 0;
|
||||
}
|
||||
if (!($dom[$key]['tag'] AND !$dom[$key]['opening'] AND ($dom[$key]['value'] == 'table') AND ($this->emptypagemrk[$this->page] == $this->pagelen[$this->page]))) {
|
||||
if (!($dom[$key]['tag'] AND !$dom[$key]['opening'] AND ($dom[$key]['value'] == 'table')
|
||||
AND (isset($this->emptypagemrk[$this->page]))
|
||||
AND ($this->emptypagemrk[$this->page] == $this->pagelen[$this->page]))) {
|
||||
$this->SetFont($fontname, $fontstyle, $fontsize);
|
||||
if ($wfill) {
|
||||
$this->SetFillColorArray($this->bgcolor);
|
||||
|
Loading…
Reference in New Issue
Block a user