diff --git a/htdocs/compta/bank/bankid_fr.php b/htdocs/compta/bank/bankid_fr.php
index d14da565e0c..6e4dbbeba0c 100644
--- a/htdocs/compta/bank/bankid_fr.php
+++ b/htdocs/compta/bank/bankid_fr.php
@@ -64,7 +64,7 @@ if ($action == 'update' && ! $_POST["cancel"])
$account->iban_prefix = trim($_POST["iban_prefix"]); // deprecated
$account->domiciliation = trim($_POST["domiciliation"]);
$account->proprio = trim($_POST["proprio"]);
- $account->adresse_proprio = trim($_POST["adresse_proprio"]);
+ $account->owner_address = trim($_POST["owner_address"]);
$account->fk_departement = trim($_POST["fk_departement"]);
//$account->fk_pays = trim($_POST["fk_pays"]); // We do not change this.
@@ -223,7 +223,7 @@ if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
print "\n";
print '
| '.$langs->trans("BankAccountOwnerAddress").' | ';
- print nl2br($account->adresse_proprio);
+ print nl2br($account->owner_address);
print " |
\n";
}
@@ -368,8 +368,8 @@ if ($_GET["id"] && $action == 'edit' && $user->rights->banque->configurer)
print '';
print '| '.$langs->trans("BankAccountOwnerAddress").' | ';
- print " |
";
}
diff --git a/htdocs/compta/bank/fiche.php b/htdocs/compta/bank/fiche.php
index 00164b99352..fe251cae5cb 100644
--- a/htdocs/compta/bank/fiche.php
+++ b/htdocs/compta/bank/fiche.php
@@ -134,7 +134,7 @@ if ($_POST["action"] == 'update' && ! $_POST["cancel"])
$account->domiciliation = trim($_POST["domiciliation"]);
$account->proprio = trim($_POST["proprio"]);
- $account->adresse_proprio = trim($_POST["adresse_proprio"]);
+ $account->owner_address = trim($_POST["owner_address"]);
$account->account_number = trim($_POST["account_number"]);