Suppression fonction update en double ?????

This commit is contained in:
Rodolphe Quiedeville 2005-07-30 20:24:59 +00:00
parent cda84e1e25
commit a0ab305b06

View File

@ -144,32 +144,7 @@ class Project {
}
}
/*
* \brief Met à jour objet projet dans la base
*/
function update()
{
$this->ref = ereg_replace("\"","",stripslashes($this->ref));
$this->ref = ereg_replace("'","",stripslashes($this->ref));
$this->ref = trim($this->ref);
$this->title = ereg_replace("\"","",stripslashes($this->title));
$this->title = ereg_replace("'","",stripslashes($this->title));
$this->title = trim($this->title);
$sql = "UPDATE ".MAIN_DB_PREFIX."projet SET";
$sql .= " ref='".$this->ref."', ";
$sql .= " title='".$this->title."' ";
$sql .= " WHERE rowid=".$this->id;
$resql = $this->db->query($sql);
if (!$resql)
{
print $this->db->error();
}
}
/*
*
*