Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Intl/Locale.php')
-rw-r--r--core/Intl/Locale.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Intl/Locale.php b/core/Intl/Locale.php
index 05cf51a8e3..684861237e 100644
--- a/core/Intl/Locale.php
+++ b/core/Intl/Locale.php
@@ -32,7 +32,7 @@ class Locale
setlocale(LC_ALL, $newLocale);
setlocale(LC_CTYPE, '');
// Always use english for numbers. otherwise the decimal separator might get localized when casting a float to string
- setlocale(LC_NUMERIC, array('en_US.UTF-8', 'en-US'));
+ setlocale(LC_NUMERIC, array('en_US.UTF-8', 'en-US', 'C.UTF-8', 'C'));
}
public static function setDefaultLocale()