Actions
Bug #98917
closedMissing link in sys_news leads to endless loop
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Authentication
Target version:
-
Start date:
2022-10-25
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.1
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
I have in one sys_news the following link
http://www.domain.de/index.php?id=74854
The page 74854 does no longer exist. When i try to login i get no login mask because the exception \TYPO3\CMS\Frontend\Typolink\UnableToLinkException is thrown which leads to calling onTransformUriFailure in HtmlWorker .
There we have this loop which will never be left somehow:
foreach ($element->childNodes as $child) {
$element->parentNode->insertBefore($child, $element->nextSibling);
}
I just encountered this problem because i was updating form 10.5 to 11.5
Actions