Bug #23705
closedsections in flexform check access to language 0 even if record is in another language
0%
Description
This problem may be best seen in action with templavoila, but it is caused by the core handling of sections in flexforms.
When a section is defined in a flexform, the function getSingleField_typeFlex_draw in class t3lib_TCEforms checks if the user has access to the default language. This check is even done, when the record is totally unrelated to the default language, e.g. when you have a localized copy of an fce or a flexform in a simple extension record.
When a user has no access to the default language, he can not create a new entry in the section, but only edit the already existing.
The check should be changed if the user can edit the language of the current record, but probably only if the flexform is configured with langDisable = 1
(issue imported from #M15958)
Files
Updated by Andreas Kießling about 14 years ago
See attached patch.
langDisable can probably be ignored, because a new section is always independant of other languages
Updated by Andreas Kießling almost 14 years ago
Attached v5.
Please test and vote in core list.
Updated by Alexander Opitz over 10 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0) - Is Regression set to No
Hi Andreas,
as this issue is very old. Does the problem still exists within newer versions of TYPO3 CMS (6.2.3)?
Updated by Lukas Taferner about 10 years ago
Issue still exists in 4.5.34 and is very annoying. Patch works!
Updated by Alexander Opitz almost 10 years ago
- Status changed from Needs Feedback to New
Issue exists in 6.2.
Can you update your patch?
Updated by Christian Kuhn over 7 years ago
- Status changed from New to Closed
the multi-lang feature with disableChildren=1 and friends has been dropped from core.
Updated by Andreas Kießling over 7 years ago
disableChildren and friends has nothing to do with that issue
The access check for lang 0 is still there: https://github.com/TYPO3/TYPO3.CMS/blob/38a1bc5dd7990b63e45c0419065cd02fe91187e9/typo3/sysext/backend/Classes/Form/Container/FlexFormSectionContainer.php#L50
So you can't restructure sections or add new elements without access to language 0. IMHO this is a bug or should be at least configurable.