diff --git a/typo3/sysext/linkvalidator/Classes/QueryRestrictions/EditableRestriction.php b/typo3/sysext/linkvalidator/Classes/QueryRestrictions/EditableRestriction.php index 0c1668c796a165c38a77f3d1906bdb0db5cd852a..7091351a304047dfbf3e4bc32e2f3232d0e10e45 100644 --- a/typo3/sysext/linkvalidator/Classes/QueryRestrictions/EditableRestriction.php +++ b/typo3/sysext/linkvalidator/Classes/QueryRestrictions/EditableRestriction.php @@ -66,7 +66,12 @@ class EditableRestriction implements QueryRestrictionInterface foreach ($searchFields as $table => $fields) { if ($table !== 'pages' && ($GLOBALS['TCA'][$table]['ctrl']['type'] ?? false)) { $type = $GLOBALS['TCA'][$table]['ctrl']['type']; - $fieldConfig = $GLOBALS['TCA'][$table]['columns'][$type]['config']; + $fieldConfig = $GLOBALS['TCA'][$table]['columns'][$type]['config'] ?? []; + if ($fieldConfig === []) { + // $type might be "uid_local:type" for table "sys_file_reference" and then $fieldConfig will be empty + // in this case we skip because we do not join with the other table and will not have this value + continue; + } // Check for items if ($fieldConfig['type'] === 'select' && is_array($fieldConfig['items'] ?? false)