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]);
}
* @return string
* @access public
*/
- function getAbstracto() // ~X2C
+ function getSintesis() // ~X2C
{
- return $this->abstracto;
+ return $this->sintesis;
}
// -X2C