From: Mathieu Lu Date: Wed, 29 Nov 2023 19:39:39 +0000 (-0500) Subject: Case Custom Data: fix non-US numeric decimals X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=737427d5f80819b82912297346eaf71df8d92112;p=civicrm-core.git Case Custom Data: fix non-US numeric decimals --- 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();