]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm/Renderer/Tabla.php
Arregle un bug que hacĂ­a que chille si no estaban definidos los archivos de imagenes...
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm / Renderer / Tabla.php
index 2a82680d4827909d14a68dcb739c5b36ee954aaa..7f7432e1edc32661181e159de62d7459435b5404 100644 (file)
@@ -250,11 +250,11 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
             $id = $this->_tabla->addRow(
                 array(join('', $this->_groupElements))
             );
-            $this->_tabla->updateCellAttributes($id, 0, array('align' => 'right', 'colspan' => 2));
+            $this->_tabla->updateCellAttributes($id, 0, array('valign' => 'middle', 'align' => 'right', 'colspan' => 2));
         } else {
             $id = $this->_tabla->addRow(
                 array($group->getLabel(), join($sep, $this->_groupElements)),
-                array('align' => 'left')
+                array('valign' => 'middle', 'align' => 'left')
             );
             $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left', 'nowrap' => true));
         }