diff --git a/components/com_fabrik/models/element.php b/components/com_fabrik/models/element.php index dc96d4f1786..0b337165a15 100644 --- a/components/com_fabrik/models/element.php +++ b/components/com_fabrik/models/element.php @@ -6762,7 +6762,11 @@ public function unNumberFormat($val) { $thousandSep = ' '; } - + else if ($thousandSep == '#00') + { + $thousandSep = ''; + } + $val = str_replace($thousandSep, '', $val); $val = str_replace($decimalSep, '.', $val);