From 4a37932143d39cc4ce01d88af24971772ea6641d Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 2 Feb 2004 13:26:53 +0000 Subject: [PATCH] Correction erreur dans update_perso --- htdocs/contact.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/contact.class.php b/htdocs/contact.class.php index 17d4722118f..6fd6b3f71d4 100644 --- a/htdocs/contact.class.php +++ b/htdocs/contact.class.php @@ -165,7 +165,7 @@ class Contact { $sql = "UPDATE llx_socpeople SET "; - $sql .= " birthday='".$db->idate($this->birthday)."'"; + $sql .= " birthday='".$this->db->idate($this->birthday)."'"; $sql .= " WHERE idp=$id"; $result = $this->db->query($sql);