Actions
Bug #96418
closedgetTypoLink throws an error if get parameter are set
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Content Rendering
Target version:
-
Start date:
2021-12-21
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
PHP Warning: Undefined array key "additionalParams" in
/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5079
ContentObjectRenderer.php line 5079 is
$conf['additionalParams'] .= HttpUtility::buildQueryString($urlParameters, '&');
Should be like line 5082
$conf['additionalParams'] = ($conf['additionalParams'] ?? '') . HttpUtility::buildQueryString($urlParameters, '&');
Thanks
Updated by Gerrit Code Review almost 3 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/+/72792
Updated by Gerrit Code Review almost 3 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/+/72783
Updated by Chris Müller almost 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 93e1f9eca62694fa1323aec7f8ebd620f73fbbbd.
Actions