Actions
Task #103477
closedDocumentation for Link Validator searchFields says it is only possible to check fields with a defined "softref"
Start date:
2024-03-25
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
This is no longer true, Link Validator also checks fields if TCA is configured with "type" => "link".
Currently, LinkValidator can only detect links for fields having at least one softref set in their TCA configuration.
LinkAnalyzer.php:
if (($conf['type'] ?? '') === 'link' && empty($conf['softref'])) {
$conf['softref'] = 'typolink';
}
patch can be backported up to v12.
Actions