]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Noticia.php
Corrijo HTML_Noticia para que Myrna quede contenta
[mecon/intranet.git] / sistema / local_lib / HTML_Noticia.php
index d7dca9b1ae48ce3c5fc148060e6ad44a7c5f2eb1..7d275254a6adf58d53c9edd136b724878f2e9406 100644 (file)
@@ -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'));