]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Tabla.php
Se corrige un bug.
[mecon/meconlib.git] / lib / MECON / HTML / Tabla.php
index 65512ff44bfe77b0fd22c28491e1f56734605974..cd1489624d59012fd6839bd040f92a13ca5f002b 100644 (file)
@@ -85,6 +85,10 @@ class MECON_HTML_Tabla extends HTML_Table {
             }            
         }        
         $this->HTML_Table($this->_attrs);
+            if (isset($attrs['align'])) {
+                $this->_attrs['align'] = $attrs['align'];
+            }
+
     }    
 
     /**                 
@@ -256,12 +260,14 @@ class MECON_HTML_Tabla extends HTML_Table {
      */
     function toHtml($simple = 0)
     {
+
         // Agregar la tabla de fondo.
         if ($simple) {
             $result = parent::toHtml();
         } else {
             $contenedora = $this->_conf['atributos']['tabla_contenedora'];
             $contenedora['width'] = $this->getAttribute('width');
+            $contenedora['align'] = $this->_attrs['align'];
             $this->updateAttributes(array('width' => '100%'));
             $tabla_externa =  new HTML_Table($contenedora);
             $tabla_externa->addRow(array(parent::toHtml()),