Actions
Bug #29019
closedgetSingleField_typeFlex doesn' respect TSconfig settings
Start date:
2011-08-16
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.3
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
The Handler for Flexforms getSingleField_typeFlex doesn't respect the TSconfig settings for flexforms that have been introduced with TYPO3 4.5.
This is due to the fact that it calls $flexFormHelper->modifyFlexFormDS with the wrong configuration array.
In line 2488 it should be
$dataStructArray = $flexFormHelper->modifyFlexFormDS($dataStructArray, $table, $field, $row, $PA['fieldConf']);
instead of
$dataStructArray = $flexFormHelper->modifyFlexFormDS($dataStructArray, $table, $field, $row, $PA['fieldConf']['config']);
to get the same behaviour as in class.t3lib_transferdata.php => renderRecord_flexProc, which does respect the settings perfectly.
Actions