Fix local floats in XML

This commit is contained in:
Sergey Shuchkin 2021-01-25 22:43:37 +06:00
parent 205396b998
commit 8b6d0505b5
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ class SimpleXLSXGen {
protected function _sheetToXML($idx, $template) {
// locale floats fr_FR 1.234,56 -> 1234.56
$_loc = setlocale(LC_NUMERIC,'');
$_loc = setlocale(LC_NUMERIC, 0);
setlocale(LC_NUMERIC,'C');
$COLS = [];
$ROWS = [];