Actions
Bug #92699
closedvariables in ContentObjectRenderer::checkIf
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
-
Start date:
2020-10-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
7.3
Tags:
ContentObjectRenderer rendering TypoScript
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
Some variable are not checked properly before usage:
For many variables is checked this:
if (isset($conf['a']) || isset($conf['a.'])) {
but used are both.
Concrete example:
if (isset($conf['isTrue']) || isset($conf['isTrue.'])) { $isTrue = isset($conf['isTrue.']) ? trim($this->stdWrap($conf['isTrue'], $conf['isTrue.'])) : trim($conf['isTrue']); if (!$isTrue) { $flag = false; } }
This example is throwing an error if $conf['isTrue.'] is set but $conf['isTrue'] not.
Actions