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