From: Leandro Lucarella Date: Mon, 6 Oct 2003 19:15:34 +0000 (+0000) Subject: Se arregla bug de estilos. X-Git-Tag: svn_import~244 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/3c4bbb1edad6d25aadeecc57f93cb81f943c9cbb Se arregla bug de estilos. --- diff --git a/lib/MECON/HTML/Arbol.php b/lib/MECON/HTML/Arbol.php index fcd976f..9603830 100644 --- a/lib/MECON/HTML/Arbol.php +++ b/lib/MECON/HTML/Arbol.php @@ -137,7 +137,7 @@ class MECON_HTML_Arbol extends HTML_Table foreach ($dat as $e) { $titulo = $e['titulo']; if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo'; - else $class = $classes[$n]; + else $class = @$classes[$n] ? $classes[$n] : end($classes); if(isset($e['bold'])) $class .= '_bold'; if(!is_null($e['link'])) { $link = $e['link'];