Skip to content
Snippets Groups Projects
Commit e58f47f7 authored by Jan Delius's avatar Jan Delius Committed by Georg Ringer
Browse files

[BUGFIX] Fill alternative language keys correctly

This change adds the language dependencies individually to the array
instead of completely overwriting them as a string. Since the
dependencies are iterated in the core, this function only adds to the
array instead of overwriting the first index.

Resolves: #88045
Releases: master, 9.5
Change-Id: I3101bf8f9873ffa5ceeee3cc9e9ace36858f39a4
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60356


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatartheline <typo3@theline.capella.uberspace.de>
Tested-by: default avatarBenjamin Kott <benjamin.kott@outlook.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatartheline <typo3@theline.capella.uberspace.de>
Reviewed-by: default avatarBenjamin Kott <benjamin.kott@outlook.com>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent 62756eed
Branches
Tags
No related merge requests found
......@@ -199,7 +199,7 @@ class LocalizationUtility
$locales = GeneralUtility::makeInstance(Locales::class);
if (in_array($languageKeys['languageKey'], $locales->getLocales())) {
foreach ($locales->getLocaleDependencies($languageKeys['languageKey']) as $language) {
$languageKeys['alternativeLanguageKeys'] = $language;
$languageKeys['alternativeLanguageKeys'][] = $language;
}
}
} elseif (!empty($GLOBALS['BE_USER']->uc['lang'])) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment