Skip to content

Commit

Permalink
FIX error sql on update ficheinter
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Algoud committed Aug 22, 2014
1 parent 8705dd4 commit b0163fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/fichinter/class/fichinter.class.php
Expand Up @@ -235,7 +235,7 @@ function update($user, $notrigger=0)
$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");
Expand Down

0 comments on commit b0163fb

Please sign in to comment.