diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 5bf0264..773019c 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +5.9.143 (2012-01-08) + - Bug item #3471057 "setCreator() has no effect" was fixed. + 5.9.142 (2011-12-23) - Source code documentation was updated. diff --git a/README.TXT b/README.TXT index db1b650..cfc5116 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.142 -Release date: 2011-12-23 +Version: 5.9.143 +Release date: 2012-01-08 Author: Nicola Asuni Copyright (c) 2002-2012: diff --git a/tcpdf.php b/tcpdf.php index 8791d03..7b53ad1 100755 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 5.9.142 + * @version 5.9.143 */ // Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file. @@ -151,7 +151,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.142 + * @version 5.9.143 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { @@ -162,7 +162,7 @@ class TCPDF { * Current TCPDF version. * @private */ - private $tcpdf_version = '5.9.142'; + private $tcpdf_version = '5.9.143'; // Protected properties @@ -12287,7 +12287,7 @@ class TCPDF { $docdate = $this->_escapeXML($docdate); $xmp .= "\t\t".''."\n"; $xmp .= "\t\t\t".''.$docdate.''."\n"; - $xmp .= "\t\t\t".'TCPDF'."\n"; + $xmp .= "\t\t\t".''.$this->creator.''."\n"; $xmp .= "\t\t\t".''.$docdate.''."\n"; $xmp .= "\t\t\t".''.$docdate.''."\n"; $xmp .= "\t\t".''."\n";