]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Tabla.php
Arreglos un error.
[mecon/meconlib.git] / lib / MECON / PDF / Tabla.php
index 776522011fdacd1f86716be7effd1d1fcda7f542..cd07a85ed91e38fe25843dfb0bef3f3364015dc1 100644 (file)
@@ -185,7 +185,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
         }
         
         if (!isset($attr))
-            die ('Todas las columnas tienen que tener un ancho asignado');
+            trigger_error ('Todas las columnas tienen que tener un ancho asignado', E_USER_ERROR);
         
         $tmp = array_sum($attr);
         
@@ -297,7 +297,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                         }
 
                         if (@$estilo['colspan']) {
-                            $jj += $estilo['colspan'];
+                            $jj += $estilo['colspan'] -1;
                         }
                         
                     }
@@ -341,7 +341,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                     }
                 }
                 if (@$estilo['colspan']) {
-                    $j += $estilo['colspan'];
+                    $j += $estilo['colspan']-1;
                 }
 
             }