From 737427d5f80819b82912297346eaf71df8d92112 Mon Sep 17 00:00:00 2001 From: Mathieu Lu Date: Wed, 29 Nov 2023 14:39:39 -0500 Subject: [PATCH] Case Custom Data: fix non-US numeric decimals --- CRM/Case/Form/CustomData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Case/Form/CustomData.php b/CRM/Case/Form/CustomData.php index b1768b6342..47dbd939bd 100644 --- a/CRM/Case/Form/CustomData.php +++ b/CRM/Case/Form/CustomData.php @@ -110,7 +110,7 @@ class CRM_Case_Form_CustomData extends CRM_Core_Form { * @throws \CRM_Core_Exception */ public function postProcess(): void { - $params = $this->controller->exportValues($this->_name); + $params = $this->getSubmittedValues(); $transaction = new CRM_Core_Transaction(); -- 2.25.1