mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-12-23 08:58:55 +00:00
5.9.136
This commit is contained in:
parent
fb4d5c667d
commit
51ca917759
@ -1,3 +1,6 @@
|
||||
5.9.136 (2011-11-274)
|
||||
- Bug item #3443387 "SetMargins with keep option does not work for top margin" was fixed.
|
||||
|
||||
5.9.135 (2011-11-04)
|
||||
- Bug item #3433406 "Double keywords in description" was fixed.
|
||||
|
||||
|
@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
|
||||
------------------------------------------------------------
|
||||
|
||||
Name: TCPDF
|
||||
Version: 5.9.135
|
||||
Release date: 2011-11-04
|
||||
Version: 5.9.136
|
||||
Release date: 2011-11-27
|
||||
Author: Nicola Asuni
|
||||
|
||||
Copyright (c) 2002-2011:
|
||||
|
@ -2,7 +2,7 @@
|
||||
//============================================================+
|
||||
// File name : ces.php
|
||||
// Begin : 2010-10-26
|
||||
// Last Update : 2010-10-26
|
||||
// Last Update : 2010-11-22
|
||||
//
|
||||
// Description : Language module for TCPDF
|
||||
// (contains translated texts)
|
||||
@ -40,7 +40,7 @@ $l['a_meta_dir'] = 'ltr';
|
||||
$l['a_meta_language'] = 'cs';
|
||||
|
||||
// TRANSLATIONS --------------------------------------
|
||||
$l['w_page'] = 'stránky';
|
||||
$l['w_page'] = 'stránka';
|
||||
|
||||
//============================================================+
|
||||
// END OF FILE
|
||||
|
12
tcpdf.php
12
tcpdf.php
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
//============================================================+
|
||||
// File name : tcpdf.php
|
||||
// Version : 5.9.135
|
||||
// Version : 5.9.136
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2011-11-04
|
||||
// Last Update : 2011-11-027
|
||||
// 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.
|
||||
// -------------------------------------------------------------------
|
||||
@ -137,7 +137,7 @@
|
||||
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @author Nicola Asuni
|
||||
* @version 5.9.135
|
||||
* @version 5.9.136
|
||||
*/
|
||||
|
||||
// Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file.
|
||||
@ -149,7 +149,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.135
|
||||
* @version 5.9.136
|
||||
* @author Nicola Asuni - info@tecnick.com
|
||||
*/
|
||||
class TCPDF {
|
||||
@ -160,7 +160,7 @@ class TCPDF {
|
||||
* Current TCPDF version.
|
||||
* @private
|
||||
*/
|
||||
private $tcpdf_version = '5.9.135';
|
||||
private $tcpdf_version = '5.9.136';
|
||||
|
||||
// Protected properties
|
||||
|
||||
@ -21546,11 +21546,13 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
|
||||
if (($dom[$key]['attribute']['pagebreak'] == 'true') OR ($dom[$key]['attribute']['pagebreak'] == 'left') OR ($dom[$key]['attribute']['pagebreak'] == 'right')) {
|
||||
// add a page (or trig AcceptPageBreak() for multicolumn mode)
|
||||
$this->checkPageBreak($this->PageBreakTrigger + 1);
|
||||
$this->htmlvspace = ($this->PageBreakTrigger + 1);
|
||||
}
|
||||
if ((($dom[$key]['attribute']['pagebreak'] == 'left') AND (((!$this->rtl) AND (($this->page % 2) == 0)) OR (($this->rtl) AND (($this->page % 2) != 0))))
|
||||
OR (($dom[$key]['attribute']['pagebreak'] == 'right') AND (((!$this->rtl) AND (($this->page % 2) != 0)) OR (($this->rtl) AND (($this->page % 2) == 0))))) {
|
||||
// add a page (or trig AcceptPageBreak() for multicolumn mode)
|
||||
$this->checkPageBreak($this->PageBreakTrigger + 1);
|
||||
$this->htmlvspace = ($this->PageBreakTrigger + 1);
|
||||
}
|
||||
}
|
||||
if ($dom[$key]['tag'] AND $dom[$key]['opening'] AND isset($dom[$key]['attribute']['nobr']) AND ($dom[$key]['attribute']['nobr'] == 'true')) {
|
||||
|
Loading…
Reference in New Issue
Block a user