]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Algunos retoques a MECON_PDF_Tabla. Nada de otro mundo
authorManuel Nazar Anchorena <manazar@mecon.gov.ar>
Mon, 24 Nov 2003 14:52:39 +0000 (14:52 +0000)
committerManuel Nazar Anchorena <manazar@mecon.gov.ar>
Mon, 24 Nov 2003 14:52:39 +0000 (14:52 +0000)
lib/MECON/PDF/Tabla.php

index db1f332c2d32992b16d30fea6a32c64fc6010c63..776522011fdacd1f86716be7effd1d1fcda7f542 100644 (file)
@@ -177,14 +177,16 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
         for ($row = 0; $row<$this->_tabla->getRowCount(); $row++) {
             for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
                 $tmp = $this->_tabla->getCellAttributes($row,$i);
-                 if(intval($tmp['width']) != 0)
+                if(@intval($tmp['width']) != 0)
                     $attr[$i] = intval($tmp['width']);
-                if(count($attr) == $this->_tabla->getColCount())
-                  break;
+                if(@count($attr) == $this->_tabla->getColCount())
+                  break 2;
             }
-            if(count($attr) == $this->_tabla->getColCount())
-               break;
         }
+        
+        if (!isset($attr))
+            die ('Todas las columnas tienen que tener un ancho asignado');
+        
         $tmp = array_sum($attr);
         
         $attr2[0] = 0;