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=...
)
Actions