X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/7e48327fd634cc173dc5df502f5f175484c2b944..e59d3170b36e5b9ccc19afcb1565faf4dcb40463:/sistema/local_lib/HTML_Noticia.php diff --git a/sistema/local_lib/HTML_Noticia.php b/sistema/local_lib/HTML_Noticia.php index c1b6d2c..5aceb02 100644 --- a/sistema/local_lib/HTML_Noticia.php +++ b/sistema/local_lib/HTML_Noticia.php @@ -86,8 +86,10 @@ class HTML_Noticia extends HTML_Table { } else { - $this->addRow(array($this->noticia->getSeccion()), - array('class' => 'noticias_subtitulo')); + $seccion = $this->noticia->getSeccion(); + if(!is_null($seccion)) + $this->addRow(array($seccion), + array('class' => 'noticias_subtitulo')); $img_str = null; if($this->nuevo) { @@ -99,8 +101,11 @@ class HTML_Noticia extends HTML_Table { $this->addRow(array($tmp->format('(%d/%m/%Y)')), array('class' => 'noticias_fecha_noticia')); $mas = new MECON_HTML_Image('images/noticia_mas.gif'); - $this->addRow(array("".$mas->toHTML().' ver más'), + if(isset($this->vermas)) + { + $this->addRow(array("".$mas->toHTML().' ver más'), array('class' => 'noticias_ver_mas')); + } $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_puntos.gif')), array('class' => 'noticias_ver_mas')); }