Actions
Bug #24586
closedFlexform labels point to wrong checkbox
Start date:
2011-01-15
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Insert fe_login plugin.
Click on the 3rd Enabled, the 1st Checkbox is toggled.
See screenshot.
(issue imported from #M17049)
Files
Updated by Steffen Gebert almost 14 years ago
It has probably never worked, but was simply not used.
Updated by Steffen Gebert almost 14 years ago
The id of the checkbox is always _0.
Reason is that $PA['itemFormElID'] in t3lib_TCEforms::getSingleField_typeCheck() is undefined.
The $PA parameter array for flexforms created in t3lib_TCEforms_Flexforms::modifySingleFlexFormSheet(), using $fakePA as variable name.
Using the itemFormElName also as itemFormElID solves this issue and makes IDs unique also in FlexForms.
Actions