[TYPO3-core] RFC: #6703 $TCA[table]['ctrl']['hideTable'] not implemented

Martin Kutschker Martin.Kutschker at n0spam-blackbox.net
Tue Nov 13 18:17:45 CET 2007


Malte Jansen schrieb:
> Hi!
> 
> This is an SVN patch request.
> 
> Type: Bugfix
> 
> Bugtracker references:
> http://bugs.typo3.org/view.php?id=6703
> 
> Branches:
> Trunk & 4.1

You change from
if (t3lib_div::inList($this->hideTables, $tableName))	continue;

To
if (t3lib_div::inList($this->hideTables, $tableName)
	|| $TCA[$tableName]['ctrl']['hideTable']) {
	continue;
}

Isn't it possible to set up $this->hideTables correctly? I think this is 
the real bug.

Masi


More information about the TYPO3-team-core mailing list