]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Cambios minimos de desenio
authorGonzalo Merayo <merayo@gmail.com>
Wed, 10 Sep 2003 18:30:39 +0000 (18:30 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Wed, 10 Sep 2003 18:30:39 +0000 (18:30 +0000)
lib/MECON/HTML/Arbol.php

index e33e65d90a55890f36d58072e14bd4a965467591..815416615fa7ee3759d8088aef1ca1a3dfdddc4c 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><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);