From: Gonzalo Merayo Date: Tue, 23 Sep 2003 19:56:55 +0000 (+0000) Subject: Agrego los links de volver al grupo de notiicias de la seccion a que pertenece X-Git-Tag: svn_import~156 X-Git-Url: https://git.llucax.com/mecon/intranet.git/commitdiff_plain/1555e161f408c3be2f719ae0197a4a63d18774e0 Agrego los links de volver al grupo de notiicias de la seccion a que pertenece --- diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index 03d53a0..1de656c 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -66,6 +66,7 @@ class HTML_Titulares extends HTML_Table { function HTML_Titulares($grupo_secciones = null, $antiguedad = null) // ~X2C { parent::HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); + $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME $db = MEconDAVDB::Connect(); $hoy = new Date(); $fecha_nuevo = $hoy->format('%Y-%m-%d'); @@ -77,7 +78,6 @@ class HTML_Titulares extends HTML_Table { AND ArticlePublicationStates.publication_state_id=5 "; if(!is_null($grupo_secciones)) { - $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME $gs = new AI_GrupoSecciones($grupo_secciones); $gs->cargar($db2); if(count($gs->secciones) > 0) @@ -107,7 +107,8 @@ class HTML_Titulares extends HTML_Table { if(is_null($grupo_secciones)) { //$n->getIdSeccion(); - $not->setVerMas("noticias?grupo=TODO");//TODO + $not->setVerMas("noticias?grupo=". + AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2)); } if($row[1] == 'NUEVA') $not->setNuevo(true); diff --git a/sistema/www/una_noticia.php b/sistema/www/una_noticia.php index cc07361..2cb21dd 100644 --- a/sistema/www/una_noticia.php +++ b/sistema/www/una_noticia.php @@ -4,6 +4,7 @@ require_once 'MECON/HTML/ArbolDB.php'; require_once '../../lib/noticia.php'; require_once '../local_lib/HTML_Noticia.php'; + require_once 'AI/GrupoSecciones.php'; $m = new HTML_DietMarco('noticias', 'Noticias'); $noticias = new HTML_Table(array('width' => '760', 'border' => '0')); @@ -19,8 +20,12 @@ 'prepend_link' => 'noticias.php?grupo='); $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS'); - $noticia = new HTML_Noticia(new noticia($_GET['numero'])); + $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=". + AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2)); $noticia->setCompleta(true); $noticias->addRow(array($arbol,$noticia)); $m->addStyleSheet($arbol->getCSS());