Actions
Bug #16553
closedIn BE Usergroup, it is not possible to select more than 20 tables(modify) at any time
Start date:
2006-09-12
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.0
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Backend usergroup -> Include Access Lists -> Tables (modify)
(issue imported from #M4202)
Files
Updated by Petrovan Bogdan about 18 years ago
found solution for this problem. it's not a bug. add this lines into your typo3conf/extTables.php file:
t3lib_div::loadTCA("be_groups");
$TCA['be_groups']['columns']['tables_modify']['config']['maxitems'] = 100;
$TCA['be_groups']['columns']['tables_select']['config']['maxitems'] = 100;
Updated by Oliver Hader almost 18 years ago
The attached patch files solve this for TYPO3 4.0 and TYPO3 4.1RC1
Updated by Oliver Hader almost 18 years ago
Patch committed to Trunk (4.1-dev), but still pending for TYPO3_4-0.
Actions