$tmp = $this->noticia->getFecha();
$this->addRow(array($tmp->format('Fecha de publicaciĆ³n: %d/%m/%Y')),
array('class' => 'ver_mas'));
- $this->addRow(array(new HTML_Image('images/blanco.gif')),
+ $this->addRow(array(new HTML_Image('images/blanco.gif','',
+ array('height'=>'15', 'width'=>'1', 'border'=>'0'))),
array('class' => 'ver_mas'));
$tmp = new HTML_Image('images/noticia_anterior.gif');
$this->addRow(array($tmp->toHTML().'volver'),
--- /dev/null
+<body bgcolor="#FFFFFF" class="subtitulo" link="#003366" vlink="#660066" alink="#0066FF" topmargin="0">
+<?
+ require_once '../local_lib/copete.php';
+ $c = new Copete('noticias');
+ $c->display();
+ $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
+ require_once '../local_lib/intranetdb.php';
+ require_once 'MECON/HTML/Arbol/ArbolDB.php';
+ $db = IntranetDB::connect();
+ $dbdata = array(
+ 'db' => $db,
+ 'tabla' => 'grupo_secciones',
+ 'id' => 'grupo',
+ 'nombre' => 'nombre',
+ 'id_padre' => 'grupo_padre',
+ 'prepend_link' => 'noticias.php?grupo=');
+ $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
+
+ require_once '../../lib/noticia.php';
+ require_once '../local_lib/HTML_Noticia.php';
+ $noticia = new HTML_Noticia(new noticia($_GET['numero']));
+ $noticia->setCompleta(true);
+ $noticias->addRow(array($arbol,$noticia));
+ $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
+ $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'160'));
+ $noticias->display();
+?>
+</body>