32
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-11-29 15:43:53 +00:00
This commit is contained in:
Nick 2011-08-04 15:40:46 +02:00
parent 534be61143
commit e2ece15931
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
5.9.105 (2011-08-04)
- Bug item #3386153 "Check Box not ticked when set to true" was fixed.
5.9.104 (2011-08-01) 5.9.104 (2011-08-01)
- Bug item #3383698 "imagemagick, resize and dpi" was fixed. - Bug item #3383698 "imagemagick, resize and dpi" was fixed.

View File

@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------ ------------------------------------------------------------
Name: TCPDF Name: TCPDF
Version: 5.9.104 Version: 5.9.105
Release date: 2011-08-01 Release date: 2011-08-04
Author: Nicola Asuni Author: Nicola Asuni
Copyright (c) 2002-2011: Copyright (c) 2002-2011:

View File

@ -15877,7 +15877,7 @@ class TCPDF {
$opt['t'] = $name; $opt['t'] = $name;
$opt['opt'] = array($onvalue); $opt['opt'] = array($onvalue);
if ($checked) { if ($checked) {
$opt['v'] = array('/0'); $opt['v'] = array('/Yes');
$opt['as'] = 'Yes'; $opt['as'] = 'Yes';
} else { } else {
$opt['v'] = array('/Off'); $opt['v'] = array('/Off');