]> git.llucax.com Git - mecon/intranet.git/blobdiff - lib/noticia.php
Se agrega BandasNovedades.
[mecon/intranet.git] / lib / noticia.php
index 1f9a6656faf7a0ea93135c749d27e12661c36794..fc41b8037fabc3cc60d614c3520916ea585e9bcf 100644 (file)
@@ -157,8 +157,15 @@ class noticia {
     function getLinks() // ~X2C
     {
         $db = MEconDAVDB::Connect();
     function getLinks() // ~X2C
     {
         $db = MEconDAVDB::Connect();
-        $sql = "SELECT link_id FROM Relations WHERE article_id = ".$this->noticia;
-        return $db->getCol($sql);
+        $sql = "SELECT R.link_id, A.headline
+                FROM Relations R, Articles A
+                WHERE R.link_id = A.article_id
+                AND   R.article_id = ".$this->noticia;
+        $result =& $db->query($sql);
+        $links = array();
+        while($row =& $result->fetchRow())
+          $links[] = array('numero'=>$row[0], 'texto'=>$row[1]);
+        return $links;
     }
     // -X2C
 
     }
     // -X2C
 
@@ -173,7 +180,7 @@ class noticia {
         $sql = "SELECT file_for_article_id, caption FROM FilesForArticle WHERE article_id = ".$this->noticia;
         $result =& $db->query($sql);
         $archivos = array();
         $sql = "SELECT file_for_article_id, caption FROM FilesForArticle WHERE article_id = ".$this->noticia;
         $result =& $db->query($sql);
         $archivos = array();
-        while($row =& $result->getRow())
+        while($row =& $result->fetchRow())
           $archivos[] = array('numero'=>$row[0], 'texto'=>$row[1]);
         return $archivos;
     }
           $archivos[] = array('numero'=>$row[0], 'texto'=>$row[1]);
         return $archivos;
     }