X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/304f4e6067bb93c9be26a21fcabb6ac84bc4724b..950719e82287bf487010a793a5e4e40ce374e21c:/lib/MECON/Marco/Menu.php diff --git a/lib/MECON/Marco/Menu.php b/lib/MECON/Marco/Menu.php index 367f0c4..d73124f 100644 --- a/lib/MECON/Marco/Menu.php +++ b/lib/MECON/Marco/Menu.php @@ -102,10 +102,10 @@ class MECON_Marco_Menu { { $this->_tabla = new HTML_Table('width=760 align="center" - bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" - border="0"'); + border="0" + bgcolor="#FFFFFF"'); $this->_tabla->setLineEnd(''); $this->_tabla->setTab(''); @@ -220,11 +220,11 @@ class MECON_Marco_Menu { if (array_key_exists('hijos',$sec)) { foreach ($sec['hijos'] as $hijo) { //Chequeo las subsecciones array_push($tmp[$sec['nombre']],$PATH.'/'.$hijo['link']); - $tmp2[$hijo['nombre']] = array ($PATH.'/'.$hijo['link']); + $tmp2[$sec['nombre'].'-'.$hijo['nombre']] = array ($PATH.'/'.$hijo['link']); if (array_key_exists('subhijos',$hijo)) { foreach ($hijo['subhijos'] as $subhijo) { //Chequeo las subsubsecciones array_push($tmp[$sec['nombre']],$PATH.'/'.$subhijo); - array_push($tmp2[$hijo['nombre']],$PATH.'/'.$subhijo); + array_push($tmp2[$sec['nombre'].'-'.$hijo['nombre']],$PATH.'/'.$subhijo); } } }