From c1aff22db2d41056d64497d270491dd5a2ad85ec Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Mon, 17 Jan 2011 19:58:58 +0100 Subject: [PATCH] 5.9.045 --- CHANGELOG.TXT | 3 +++ README.TXT | 4 ++-- tcpdf.php | 20 ++++++++++++-------- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 20cfe15..fdbc044 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +5.9.045 (2011-01-17) + - HTML list support were improved. + 5.9.044 (2011-01-15) - Bug #3158422 "writeHTMLCell Loop" was fixed. - Some HTML image alignment problems were fixed. diff --git a/README.TXT b/README.TXT index 2338be4..4da845a 100755 --- a/README.TXT +++ b/README.TXT @@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 5.9.044 -Release date: 2011-01-15 +Version: 5.9.045 +Release date: 2011-01-17 Author: Nicola Asuni Copyright (c) 2002-2011: diff --git a/tcpdf.php b/tcpdf.php index 7c6fca3..5cee24a 100755 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 5.9.044 + * @version 5.9.045 */ // 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.044 + * @version 5.9.045 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { @@ -157,7 +157,7 @@ class TCPDF { * Current TCPDF version. * @private */ - private $tcpdf_version = '5.9.044'; + private $tcpdf_version = '5.9.045'; // Protected properties @@ -19145,7 +19145,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: if ($this->customlistindent >= 0) { $this->listindent = $this->customlistindent; } else { - $this->listindent = $this->GetStringWidth('0000'); + $this->listindent = $this->GetStringWidth('000000'); } $this->listindentlevel = 0; // save previous states @@ -20812,14 +20812,18 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: } ++$this->listindentlevel; if ($this->listnum == 1) { - $this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag); + if ($key > 1) { + $this->addHTMLVertSpace($hbz, $hb, $cell, $firsttag); + } } else { $this->addHTMLVertSpace(0, 0, $cell, $firsttag); } break; } case 'li': { - $this->addHTMLVertSpace($hbz, 0, $cell, $firsttag); + if ($key > 2) { + $this->addHTMLVertSpace($hbz, 0, $cell, $firsttag); + } if ($this->listordered[$this->listnum]) { // ordered item if (isset($parent['attribute']['type']) AND !$this->empty_string($parent['attribute']['type'])) {