From 992dd47409710634e31722ab3e00ca896ba4772b Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 19 Dec 2005 22:32:57 +0000 Subject: [PATCH] Fix: #bug 15246 --- htdocs/compta/bank/account.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;