Actions
Bug #71603
closedField "Record Storage Page" is missing exclude flag
Start date:
2015-11-16
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.6
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
If a content element makes use of the field "Record Storage Page" (e.g. the CE "Plugin" does that), then this field incorrectly is shown always and currently cannot be excluded.
That way the field is also shown to users, who actually should not have access to it.
This bug can be fixed by adding the missing "exclude" => 1,
to the definition of that field (tt_content.pages) in typo3\sysext\frontend\Configuration\TCA\tt_content.php
, around line 689 where it defines 'pages' => ...
:
'pages' => array( 'exclude' => 1, 'label' => 'LLL:EXT:lang/locallang_general.xlf:LGL.startingpoint', ...
Actions