diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php index 0b2f99db0f1f9a4992b9b410cd8d69c2d990f636..fa389837178f8109787585443ea45b2ec6d35cc4 100644 --- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php +++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php @@ -2732,15 +2732,8 @@ class TypoScriptFrontendController { // Setting locale if ($this->config['config']['locale_all']) { - // There's a problem that PHP parses float values in scripts wrong if the - // locale LC_NUMERIC is set to something with a comma as decimal point - // Do we set all except LC_NUMERIC - $locale = setlocale(LC_COLLATE, $this->config['config']['locale_all']); - if ($locale) { - setlocale(LC_CTYPE, $this->config['config']['locale_all']); - setlocale(LC_MONETARY, $this->config['config']['locale_all']); - setlocale(LC_TIME, $this->config['config']['locale_all']); - } else { + $locale = setlocale(LC_ALL, $this->config['config']['locale_all']); + if (!$locale) { $this->getTimeTracker()->setTSlogMessage('Locale "' . htmlspecialchars($this->config['config']['locale_all']) . '" not found.', 3); } }