Actions
Bug #20095
closedListview: default limits are hardcoded
Start date:
2009-02-26
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The limits of records in list view depend on TCA setting of the tables.
$TCA[$tableName]['interface']['maxSingleDBListItems']
$TCA[$tableName]['interface']['maxDBListItems']
If these values are not set, default values are hardcoded:
var $itemsLimitPerTable = 20;
var $itemsLimitSingleTable = 100;
the following patch allows to override default settings with pageTS or userTS:
mod.web_list.itemsLimitSingleTable = 50
mod.web_list.itemsLimitPerTable = 10
(issue imported from #M10550)
Files
Actions