Skip to content
Snippets Groups Projects
Commit 8bea9fd0 authored by Nikita Hovratov's avatar Nikita Hovratov Committed by Georg Ringer
Browse files

[BUGFIX] Fix typo in TcaMigration variable

Resolves: #97311
Releases: main
Change-Id: I9edda1c4ff1c28d98187e0f954a1229a46e8463b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/74188


Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent 79170f0e
Branches
Tags
No related merge requests found
......@@ -712,15 +712,15 @@ class TcaMigration
if (is_array($fieldConfig['config']['fieldControl']['linkPopup'] ?? false)) {
$linkPopupConfig = $fieldConfig['config']['fieldControl']['linkPopup'];
if ($linkPopupConfig['options']['blindLinkOptions'] ?? false) {
$availaleTypes = $GLOBALS['TYPO3_CONF_VARS']['SYS']['linkHandler'] ?? [];
if ($availaleTypes !== []) {
$availaleTypes = array_keys($availaleTypes);
$availableTypes = $GLOBALS['TYPO3_CONF_VARS']['SYS']['linkHandler'] ?? [];
if ($availableTypes !== []) {
$availableTypes = array_keys($availableTypes);
} else {
// Fallback to a static list, in case linkHandler configuration is not available at this point
$availaleTypes = ['page', 'file', 'folder', 'url', 'email', 'record', 'telephone'];
$availableTypes = ['page', 'file', 'folder', 'url', 'email', 'record', 'telephone'];
}
$tca[$table]['columns'][$fieldName]['config']['allowedTypes'] = array_values(array_diff(
$availaleTypes,
$availableTypes,
GeneralUtility::trimExplode(',', str_replace('mail', 'email', (string)$linkPopupConfig['options']['blindLinkOptions']), true)
));
}
......
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