From ddfc0b36d9722e500b5e8856b5ce0a8e3463457f Mon Sep 17 00:00:00 2001 From: Gonzalo Merayo Date: Mon, 1 Dec 2003 19:23:36 +0000 Subject: [PATCH] Arreglo al arbol de una_noticia --- sistema/www/una_noticia.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sistema/www/una_noticia.php b/sistema/www/una_noticia.php index 2cb21dd..11ca591 100644 --- a/sistema/www/una_noticia.php +++ b/sistema/www/una_noticia.php @@ -10,18 +10,20 @@ $noticias = new HTML_Table(array('width' => '760', 'border' => '0')); $db = IntranetDB::connect(); + $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME + $n = new noticia($_GET['numero']); + $grupo = AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2); $dbdata = array( 'db' => $db, 'tabla' => 'grupo_secciones', 'id' => 'grupo', + 'id_activo' => $grupo, 'nombre' => 'nombre', 'id_padre' => 'grupo_padre', 'order' => '', 'prepend_link' => 'noticias.php?grupo='); $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS'); - $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME - $n = new noticia($_GET['numero']); $noticia = new HTML_Noticia($n); $noticia->setVolver('noticias.php'); $noticia->setVolver("noticias?grupo=". -- 2.43.0