use multiCell() to display entry values

This commit is contained in:
Roland Gruber 2005-07-18 10:55:58 +00:00
parent 78dda09764
commit 0ef7472634
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ function processLine($line,$first_td = true, $fontName) {
elseif(preg_match($value_pattern,$line,$matches)) {
$format = processFormatTags($matches[2],'');
$return[] = array('setFont',array($fontName,$format[0],9));
$return[] = array('Cell',array(50,5,$format[1],0,0,'L',0));
$return[] = array('MultiCell',array(0,5,$format[1],0,'L',0));
$return[] = array('setFont',array($fontName,'',9));
return array_merge($return,processLine($matches[1] . $matches[3],true,$fontName));
}