[TYPO3-core] RFC: #8503: TCA input with property checkbox can't be removed

Martin Kutschker martin.kutschker-n0spam at no5pam-blackbox.net
Sun May 25 17:09:57 CEST 2008


Steffen Kamper schrieb:
> Hi
> 
> This is an SVN patch request.
> 
> Type: Bugfix
> 
> Bugtracker references:
> http://bugs.typo3.org/view.php?id=8503
> 
> Branches: trunk
> 
> 
>  it is not possible to override a checkbox setting
> eg nav_title has a checkbox which doesn't make really sense.
> 
> So this setting should remove it:
> $TCA['pages']['columns']['nav_title']['config']['checkbox'] = "";

And this?

$TCA['pages']['columns']['nav_title']['config']['checkbox'] = 0

I suggest

isset($config['checkbox']) && $config['checkbox']

or

isset($config['checkbox']) && ($config['checkbox'] == true)

Masi


More information about the TYPO3-team-core mailing list