X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/d26554a315b8a4e8ce9c16ec9440815d74fadfab..11b81d2f79bfd131d04ac0c91c51175a4d89cd4d:/sistema/local_lib/HTML_Noticia.php?ds=inline diff --git a/sistema/local_lib/HTML_Noticia.php b/sistema/local_lib/HTML_Noticia.php index d7dca9b..7d27525 100644 --- a/sistema/local_lib/HTML_Noticia.php +++ b/sistema/local_lib/HTML_Noticia.php @@ -67,7 +67,7 @@ class HTML_Noticia extends HTML_Table { { if($this->completa) { - $this->addRow(array('El Nombre de la Seccion'), array('class' => 'titulo_uno')); + $this->addRow(array($this->noticia->getSeccion()), array('class' => 'titulo_uno')); $this->addRow(array(new HTML_Image('images/noticia_linea_azul.gif')), array('class' => 'ver_mas')); $this->addRow(array($this->noticia->getTitulo()), array('class' => 'textoazul')); @@ -76,7 +76,8 @@ class HTML_Noticia extends HTML_Table { $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'), @@ -84,7 +85,7 @@ class HTML_Noticia extends HTML_Table { } else { - $this->addRow(array($this->noticia->getTitulo()), + $this->addRow(array($this->noticia->getSeccion()), array('class' => 'subtitulo')); $img_str = null; if($this->nuevo) @@ -92,7 +93,7 @@ class HTML_Noticia extends HTML_Table { $nuevo = new HTML_Image('images/noticia_nuevo.gif'); $img_str = $nuevo->toHTML(); } - $this->addRow(array($this->noticia->getTitulo2().$img_str), array('class' => 'titulo_noticia')); + $this->addRow(array($this->noticia->getTitulo().$img_str), array('class' => 'titulo_noticia')); $tmp = $this->noticia->getFecha(); $this->addRow(array($tmp->format('(%d/%m/%Y)')), array('class' => 'fecha_noticia'));