]> git.llucax.com Git - mecon/intranet.git/blobdiff - lib/noticia.php
Correccion para que se vean los nombres de los campos de noticia igual a la herramienta
[mecon/intranet.git] / lib / noticia.php
index 96ba6b25411a8aa1beda412de3119f2314a10f71..50e89704f530963bd0b9c5f64f852490b0ddb0f1 100644 (file)
@@ -60,9 +60,9 @@ class noticia {
                  WHERE Article_id = $noticia";
        $result = $db->query($query);
        $row = $result->fetchRow();
-       $this->titulo2 = $row[0];
-       $this->titulo = $row[1];
-       $this->abstracto = $row[2];
+       $this->titulo = $row[0];
+       $this->titulo2 = $row[1];
+       $this->sintesis = $row[2];
        $this->texto = $row[3];
        $this->fecha = new Date($row[4]);
     }
@@ -95,9 +95,9 @@ class noticia {
      * @return string
      * @access public
      */
-    function getAbstracto() // ~X2C
+    function getSintesis() // ~X2C
     {
-        return $this->abstracto;
+        return $this->sintesis;
     }
     // -X2C