]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Noticia.php
Cambios Intranet por todos Lados
[mecon/intranet.git] / sistema / local_lib / HTML_Noticia.php
index c1b6d2c888e872bb16fd12bca5d34e3a05803910..5aceb02cbf34712657bec44821ab2395cfa7dfdf 100644 (file)
@@ -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("<a href='$this->vermas' class='noticias_ver_mas'>".$mas->toHTML().' ver más</a>'),
+           if(isset($this->vermas))
+           {
+              $this->addRow(array("<a href='$this->vermas' class='noticias_ver_mas'>".$mas->toHTML().' ver más</a>'),
                          array('class' => 'noticias_ver_mas'));
+           }
             $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_puntos.gif')),
                          array('class' => 'noticias_ver_mas'));
        }