]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
Se arreglan bugs reportados por Myrna.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index e33e65d90a55890f36d58072e14bd4a965467591..df77d1a06725761b821c73e0d4e91252c2e8a26b 100644 (file)
@@ -135,7 +135,7 @@ class MECON_HTML_Arbol extends HTML_Table
             $imagen = $imagen->toHtml();
         }
         foreach ($dat as $e) {
-            $titulo = $margen.$imagen.$e['titulo'];
+            $titulo = $e['titulo'];
             if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo';
             else $class = $classes[$n];
             if(!is_null($e['link'])) {
@@ -145,6 +145,7 @@ class MECON_HTML_Arbol extends HTML_Table
                 }
                 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
             }
+            $titulo = '<table border=0 cellpadding=0 cellspacing=0 align="left"><tr><td valign="top">'.$margen.$imagen.'</td><td>'.$titulo.'</td></tr></table>';//TODO
             $tabla->addRow(array($titulo), array('class' => $class));
             if(isset($e['sub'])) {
                 $this->expandir($e['sub'], $n+1, $tabla);