X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/89bf19b89812163353d94256d7adb0f3a9cda453..968c22c4e71bb075c2d472b1da4e29ff04a3f293:/sistema/local_lib/HTML_Titulares.php?ds=inline diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index 9e4597b..03d53a0 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -91,6 +91,7 @@ class HTML_Titulares extends HTML_Table { } $query .= "ORDER BY Articles.publication_date desc"; $result = $db->query($query); + $this->numero_noticias = $result->numRows();//FIXME no documentado if(DB::isError($result)) die($result->getMessage("query mal hecho")); $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); @@ -99,9 +100,15 @@ class HTML_Titulares extends HTML_Table { while($row = $result->fetchRow()) { $n = new noticia($row[0]); + if(!isset($this->primera_noticia)) $this->primera_noticia = $n; + if(!is_null($grupo_secciones)) $n->seccion = null; $not = new HTML_Noticia($n); $not->setLink("una_noticia.php?numero=$row[0]"); - $not->setVerMas("noticias?grupo=TODO"); + if(is_null($grupo_secciones)) + { + //$n->getIdSeccion(); + $not->setVerMas("noticias?grupo=TODO");//TODO + } if($row[1] == 'NUEVA') $not->setNuevo(true); if($impar)