diff --git a/htdocs/compta/bank/account.class.php b/htdocs/compta/bank/account.class.php index 9cb871e9e2d..0144ec9bb32 100644 --- a/htdocs/compta/bank/account.class.php +++ b/htdocs/compta/bank/account.class.php @@ -322,7 +322,7 @@ class Account $sql .= ",cle_rib='".$this->cle_rib."'"; $sql .= ",bic='".$this->bic."'"; $sql .= ",iban_prefix = '".$this->iban_prefix."'"; - $sql .= ",domiciliation='".$this->domiciliation."'"; + $sql .= ",domiciliation='".addslashes($this->domiciliation)."'"; $sql .= ",proprio = '".$this->proprio."'"; $sql .= ",adresse_proprio = '".$this->adresse_proprio."'"; $sql .= ",courant = ".$this->courant;