Upgrade to 3.6.1.1

This commit is contained in:
Bastian Allgeier
2021-12-09 17:09:57 +01:00
parent 70b8439c49
commit f62d1a39ca
17 changed files with 127 additions and 77 deletions

View File

@@ -417,7 +417,7 @@ class Str
$value = str_replace(',', '.', $value);
$decimal = strlen(substr(strrchr($value, '.'), 1));
return number_format((float)$value, $decimal, '.', false);
return number_format((float)$value, $decimal, '.', '');
}
/**