From: Gonzalo Merayo Date: Wed, 10 Sep 2003 18:30:39 +0000 (+0000) Subject: Cambios minimos de desenio X-Git-Tag: svn_import~280 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/1511bec4a5c54857391cc14fcf942d62e3047a65 Cambios minimos de desenio --- diff --git a/lib/MECON/HTML/Arbol.php b/lib/MECON/HTML/Arbol.php index e33e65d..8154166 100644 --- a/lib/MECON/HTML/Arbol.php +++ b/lib/MECON/HTML/Arbol.php @@ -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 = ''.$titulo.''; } + $titulo = '
'.$margen.$imagen.''.$titulo.'
';//TODO $tabla->addRow(array($titulo), array('class' => $class)); if(isset($e['sub'])) { $this->expandir($e['sub'], $n+1, $tabla);