From e4395042ededdebd20fa7efcf4055b4bf2ff39e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Tue, 23 Mar 2004 21:45:40 +0000 Subject: [PATCH] BugFix. Cuando una celda no tenia nada como contenido habia problemas. --- lib/MECON/PDF/Tabla.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/MECON/PDF/Tabla.php b/lib/MECON/PDF/Tabla.php index 595019e..499c406 100644 --- a/lib/MECON/PDF/Tabla.php +++ b/lib/MECON/PDF/Tabla.php @@ -250,9 +250,15 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido { else { $ancho_columna = $attr2[$j+1] - $attr2[$j]; } - $txt = $this->_marco->wordWrap( - @$this->_tabla->getCellContents($i,$j), $ancho_columna, - $estilo); + if (@$this->_tabla->getCellContents($i,$j)) { + $txt = $this->_marco->wordWrap( + @$this->_tabla->getCellContents($i,$j), $ancho_columna, + $estilo + ); + } + else { + $txt = array (' '); + } $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre $max = max($estilo['alto_linea'] * count($txt), $max); -- 2.43.0