Actions
Bug #20308
closedtypo3/db_new.php prompts to create records in hidden, static and readonly tables
Start date:
2009-04-13
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If a table is marked as hidden or static or readonly, new record wizard (typo3/db_new.php) still prompts to create an entry there. Such tables should not be visible in the new record wizard at all.
Example setup for the table:
$TCA['tx_rsaauth_keys'] = array ( 'ctrl' => array ( 'adminOnly' => true, 'hideTable' => true, 'is_static' => true, 'label' => 'uid', 'readOnly' => true, 'rootLevel' => 1, 'title' => 'Hidden, static and read-only table' ), 'columns' => array( ), 'types' => array( '0' => array( 'showitem' => '' ) ) );
(issue imported from #M10897)
Files
Actions