From 01d854e44e84f4fd9ec3fe89e4d7ef0f0ecc136e Mon Sep 17 00:00:00 2001 From: Alexandre R Date: Fri, 3 Oct 2025 13:03:52 -0400 Subject: [PATCH] FIX invoices payments on multicurrencies being converted as int (#35622) * fix invoices payments on multicurrencies being converted as int * Update paiement.php --------- Co-authored-by: A.R Co-authored-by: Laurent Destailleur --- htdocs/compta/paiement.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/compta/paiement.php b/htdocs/compta/paiement.php index c471cf0d36f..b50cdebb051 100644 --- a/htdocs/compta/paiement.php +++ b/htdocs/compta/paiement.php @@ -179,7 +179,7 @@ if (empty($reshook)) { } } - $formquestion[$i++] = array('type' => 'hidden', 'name' => $key, 'value' => GETPOSTINT($key)); + $formquestion[$i++] = array('type' => 'hidden', 'name' => $key, 'value' => GETPOST($key)); } }