Actions
Bug #73155
closedMapping alternativaData via stdWrap not working for arrays
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2016-02-05
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->getData changed for type "field" from
case 'field':
$retVal = $fieldArray[$key];
break;
in TYPO3 6.2 to
case 'field':
$retVal = $this->getGlobal($key, $fieldArray);
break;
in TYPO3 7.6.
But this does not work any more with $this->alternativeData set to an array like
Array (
[count] => 5
[0] => CN=...
[1] => CN=...
[2] => CN=...
[3] => CN=...
[4] => CN=...
)
Updated by Susanne Moog over 4 years ago
- Status changed from New to Closed
The getGlobal method actually uses the same type of key access as before if alternativeData is given. Please reopen the issue if you still have a problem here, and provide your complete alternative data array.
Actions