diff --git a/htdocs/about.php b/htdocs/about.php index 2695e2fd43f..294e66fafe2 100644 --- a/htdocs/about.php +++ b/htdocs/about.php @@ -42,6 +42,7 @@ D'autres d
  • Jean-Louis Bergamo
  • Laurent Destailleur
  • Eric Seigne
  • +
  • Benoit Mortier
  • diff --git a/htdocs/societe.class.php b/htdocs/societe.class.php index b0cb3748445..85a823cee46 100644 --- a/htdocs/societe.class.php +++ b/htdocs/societe.class.php @@ -155,7 +155,7 @@ class Societe { if (trim($this->tva_intra)) { $sql .= ",tva_intra = '" . trim($this->tva_intra) ."'"; } if (trim($this->capital)) { $sql .= ",capital = '" . trim($this->capital) ."'"; } if (trim($this->effectif_id)) { $sql .= ",fk_effectif = '" . trim($this->effectif_id) ."'"; } - if (trim($this->forme_juridique)) { $sql .= ",fk_forme_juridique = '" . trim($this->forme_juridique_code) ."'"; } + if (trim($this->forme_juridique_code)) { $sql .= ",fk_forme_juridique = '" . trim($this->forme_juridique_code) ."'"; } if (trim($this->client)) { $sql .= ",client = '" . $this->client ."'"; } if (trim($this->fournisseur)) { $sql .= ",fournisseur = '" . $this->fournisseur ."'"; } if ($user) { $sql .= ",fk_user_modif = '".$user->id."'"; }