Actions
Bug #65277
closedexclude fields not showing up in "allowed excludefields" if table property rootLevel = -1
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2015-02-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
The field "allowed excludefields" does not show fields of tables which have the property rootLevel = -1.
This behaviour is wrong because rootLevel = -1 means that the data can exist in both page tree and root. If it exists in the page tree it should be editable by non-admins and therefore the exclude fields should be listed in allowed excludefields.
I propose to change the comparison in t3lib/class.t3lib_befunc.php in the following way:
&& (empty($GLOBALS['TCA'][$table]['ctrl']['rootLevel'])
should be modified to
&& ($GLOBALS['TCA'][$table]['ctrl']['rootLevel'] != 1)
Actions