X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/fc482d3b3dfe4d7c4d78fee4f0f00d05c962f6f6..363434e2910ed025fc81935a24d517ca2aea43c1:/lib/MECON/PDF/Tabla.php diff --git a/lib/MECON/PDF/Tabla.php b/lib/MECON/PDF/Tabla.php index 7765220..cd07a85 100644 --- a/lib/MECON/PDF/Tabla.php +++ b/lib/MECON/PDF/Tabla.php @@ -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; } }