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) {
Updated by Gerrit Code Review about 2 years ago
- Status changed from New to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/75809
Updated by Oliver Bartsch about 2 years ago
- Related to Task #92715: Always handle linktypes in linkvalidator as list added
Updated by Gerrit Code Review about 2 years ago
Patch set 1 for branch 11.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/75816
Updated by Oliver Bartsch about 2 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 3b526e832adef7444d4fd5c2fd0fc8bb11b0823d.
Actions