From 0ef747263429d1ff3f669f2bd319c9a7ae69ebc4 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 18 Jul 2005 10:55:58 +0000 Subject: [PATCH] use multiCell() to display entry values --- lam/lib/pdf.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/pdf.inc b/lam/lib/pdf.inc index 3b3adde2..6551eebc 100644 --- a/lam/lib/pdf.inc +++ b/lam/lib/pdf.inc @@ -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)); }