Skip to content
Snippets Groups Projects
Commit 4d0301f5 authored by Juanjo Menent's avatar Juanjo Menent
Browse files

Merge pull request #1844 from atm-alexis/3.5

FIX error sql on update ficheinter
parents 8705dd4d b0163fbe
No related branches found
No related tags found
No related merge requests found
......@@ -235,7 +235,7 @@ class Fichinter extends CommonObject
$this->db->begin();
$sql = "UPDATE ".MAIN_DB_PREFIX."fichinter SET ";
$sql.= ", description = '".$this->db->escape($this->description)."'";
$sql.= "description = '".$this->db->escape($this->description)."'";
$sql.= ", duree = ".$this->duree;
$sql.= ", fk_projet = ".$this->fk_project;
$sql.= ", note_private = ".($this->note_private?"'".$this->db->escape($this->note_private)."'":"null");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment