Bug #17783 ยป TCA_table_ctrl_hideTable_v1_(trunk).patch
typo3/class.db_list.inc (working copy) | ||
---|---|---|
t3lib_div::loadTCA($tableName);
|
||
// Hide tables which are configured via TSConfig not to be shown (also works for admins):
|
||
if (t3lib_div::inList($this->hideTables, $tableName)) continue;
|
||
if (t3lib_div::inList($this->hideTables, $tableName)
|
||
|| $TCA[$tableName]['ctrl']['hideTable']) {
|
||
continue;
|
||
}
|
||
// iLimit is set depending on whether we're in single- or multi-table mode
|
||
if ($this->table) {
|