Actions
Bug #100024
closedPHP Warning: Undefined array key "showResultsNumbersWrap"
Status:
Closed
Priority:
Should have
Assignee:
Category:
-
Target version:
Start date:
2023-02-24
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In typo3/sysext/frontend/&Classes/Plugin/AbstractPlugin.php on line 684:
if ($wrapper['showResultsNumbersWrap']) {
This throws an PHP Warning:
PHP Warning: Undefined array key "showResultsNumbersWrap" in /Volumes/web/src/typo3_src-11.5.24/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php line 684
Valid possibility:
if (!empty($wrapper['showResultsNumbersWrap'])) {
Actions