]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Titulares.php
Se saca el session_start().
[mecon/intranet.git] / sistema / local_lib / HTML_Titulares.php
index b2ad00fe10980920f1931b976690e0d801fe432a..1ab83144ca5432361350a73c8f2972f5a31259d8 100644 (file)
@@ -83,15 +83,11 @@ class HTML_Titulares extends HTML_Table {
            if(count($gs->secciones) > 0)
                $query .= ' AND Articles.section_id IN('.implode(',', $gs->secciones).') ';
       }
-      
-      //FIXME Agregado provisorio para cargar por herramienta lo que no es noticia
       else{
-        $gs = new AI_GrupoSecciones($grupo_secciones);
-        $gs->cargar($db2);
-        if(count($gs->secciones) > 0)
-          $query .= ' AND Articles.section_id NOT IN(53) ';
+        $censuradas = $db2->getCol('SELECT seccion FROM secciones_censuradas');
+        $query .= ' AND Articles.section_id NOT IN('.implode(',', $censuradas).') ';
+        
       }
-      //FIXME Fin Agregado provisorio
       
       if(!is_null($antiguedad))
       {
@@ -152,4 +148,4 @@ class HTML_Titulares extends HTML_Table {
     // -X2C
 
 } // -X2C Class :HTML_Titulares
-?>
\ No newline at end of file
+?>