Actions
Bug #98335
closedOption to send email on new broken links only is not working in Linkvalidator scheduler
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Linkvalidator
Target version:
-
Start date:
2022-09-12
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.1
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
When this feature is enabled, email reports are never sent.
I think the problem is in the processLinkCounts function in LinkAnalyserResult.php .
The line
foreach (array_keys($linkTypes) as $linkType) {
should be changed to use array_values like this :
foreach (array_values($linkTypes) as $linkType) {
Actions