From caf6d3ec8546f85a8923b239693b2061550330ed Mon Sep 17 00:00:00 2001 From: Gonzalo Merayo Date: Mon, 30 Jun 2003 16:28:22 +0000 Subject: [PATCH] BugFix - Si se agregan secciones sin hijos agrega el titulo azul con el nombre de la seccion --- lib/MECON/Marco/MenuPrincipal.php | 17 +++++++---------- test/Marco/prueba/www/.htaccess | 4 ++-- test/Marco/prueba/www/include/prepend.php | 4 ++-- 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/lib/MECON/Marco/MenuPrincipal.php b/lib/MECON/Marco/MenuPrincipal.php index 1ec2781..fbf547f 100644 --- a/lib/MECON/Marco/MenuPrincipal.php +++ b/lib/MECON/Marco/MenuPrincipal.php @@ -103,16 +103,14 @@ class MenuPrincipal extends MenuHorizontal { } } //Agrego el contenido de la pagina - if (!is_null($this->_seccionSeleccionada)) { - if (isset($this->_seccionSeleccionada->_hijos)) { - $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre); - $row = array ($this->_seccionSeleccionada->_hijos->toHtml()); - } - else { - $row = array (''); - } + if (!is_null($this->_seccionSeleccionada) && isset($this->_seccionSeleccionada->_hijos)) { + $this->_seccionSeleccionada->_hijos->addBody($body['body'],$this->_seccionSeleccionada->_nombre); + $row = array ($this->_seccionSeleccionada->_hijos->toHtml()); + } else { + $row = array (''.$this->_seccionSeleccionada->_nombre.''); + $this->_tabla->addRow($row,'align="left" bgcolor="#336699" colspan="'.$colspan.'"'); if (is_array($body['body'])) { $tmp = ''; foreach ($body['body'] as $bod) { @@ -134,7 +132,6 @@ class MenuPrincipal extends MenuHorizontal { $row = array ($body['body']); } } - $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF" colspan="'.$colspan.'"'); $row = array ($body['pie']); @@ -144,4 +141,4 @@ class MenuPrincipal extends MenuHorizontal { } // -X2C Class :MenuPrincipal -?> \ No newline at end of file +?> diff --git a/test/Marco/prueba/www/.htaccess b/test/Marco/prueba/www/.htaccess index 67a3fee..eff7cd4 100644 --- a/test/Marco/prueba/www/.htaccess +++ b/test/Marco/prueba/www/.htaccess @@ -1,3 +1,3 @@ -php_value auto_prepend_file "/var/www/intranet/www/sistemas/prueba/www/include/prepend.php" -php_value auto_append_file "/var/www/intranet/www/sistemas/prueba/www/include/append.php" +php_value auto_prepend_file "/var/www/meconlib/test/Marco/prueba/www/include/prepend.php" +#php_value auto_append_file "/var/www/intranet/sistemas/prueba/www/include/append.php" #php_value allow_call_time_pass_reference On diff --git a/test/Marco/prueba/www/include/prepend.php b/test/Marco/prueba/www/include/prepend.php index 67dbbce..9d3f4d9 100644 --- a/test/Marco/prueba/www/include/prepend.php +++ b/test/Marco/prueba/www/include/prepend.php @@ -2,9 +2,9 @@ // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: //ARCHIVO DE PRUEBA DEL OBJETO MARCO -require_once '/var/www/meconlib/MECON/general.php'; +require_once 'MECON/general.php'; -prepend_include_path('/home/mmarrese/public_html/meconlib/tronco/lib'); +//prepend_include_path('/home/mmarrese/public_html/meconlib/tronco/lib'); require_once 'MECON/Marco.php'; -- 2.43.0