]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Tabla.php
- Cambio un query a BASE.Tabla
[mecon/meconlib.git] / lib / MECON / PDF / Tabla.php
index 595019e7c354b1024a5900bb9b12651734bfa585..499c406bc3e0f8af596248045ca31889a83d124c 100644 (file)
@@ -250,9 +250,15 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                 else {
                    $ancho_columna = $attr2[$j+1] - $attr2[$j];
                 }
                 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);
                 
                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
                 $max = max($estilo['alto_linea'] * count($txt), $max);