]> git.llucax.com Git - mecon/intranet.git/commitdiff
Agrega un espacio entre las imagenes y el texto
authorGonzalo Merayo <merayo@gmail.com>
Tue, 8 Jul 2003 19:44:01 +0000 (19:44 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Tue, 8 Jul 2003 19:44:01 +0000 (19:44 +0000)
sistema/local_lib/HTML_Noticia.php

index 15b8a315605726e96eae823e90bc4a7b1808e992..345fa517ab6d3ad115a395cab513ec48b8dc5c52 100644 (file)
@@ -92,14 +92,14 @@ class HTML_Noticia extends HTML_Table {
            if($this->nuevo)
            {
                $nuevo = new HTML_Image('images/noticia_nuevo.gif');
-               $img_str = $nuevo->toHTML();
+               $img_str = ' '.$nuevo->toHTML();
            }
             $this->addRow(array("<a href='$this->link' class='titulo_noticia'>".$this->noticia->getTitulo().$img_str.'<a>'), array('class' => 'titulo_noticia'));
             $tmp = $this->noticia->getFecha();
             $this->addRow(array($tmp->format('(%d/%m/%Y)')),
                          array('class' => 'fecha_noticia'));
            $mas = new HTML_Image('images/noticia_mas.gif');
-            $this->addRow(array("<a href='$this->vermas' class='ver_mas'>".$mas->toHTML().'ver más</a>'),
+            $this->addRow(array("<a href='$this->vermas' class='ver_mas'>".$mas->toHTML().' ver más</a>'),
                          array('class' => 'ver_mas'));
             $this->addRow(array(new HTML_Image('images/noticia_linea_puntos.gif')),
                          array('class' => 'ver_mas'));