Skip to content

Commit

Permalink
Fix Bad Formed Request PGSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed May 17, 2013
1 parent 1c1736f commit 1eddd86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/fichinter/class/fichinter.class.php
Expand Up @@ -1021,7 +1021,7 @@ function insert()
$sql.= ' (fk_fichinter, description, date, duree, rang)';
$sql.= " VALUES (".$this->fk_fichinter.",";
$sql.= " '".$this->db->escape($this->desc)."',";
$sql.= " ".$this->db->idate($this->datei).",";
$sql.= " '".$this->db->idate($this->datei)."',";
$sql.= " ".$this->duration.",";
$sql.= ' '.$rangToUse;
$sql.= ')';
Expand Down

0 comments on commit 1eddd86

Please sign in to comment.