[TYPO3-core] RFC: Bugfix for #2341: add headers fortable CE(accessibility)

Franz Holzinger franz at fholzinger.com
Mon Mar 20 18:08:06 CET 2006


Hello Sebastian,

>Hi Masi,
>thanks for the suggestion, I have implemented it. Patch is attached.
>Greets, Sebastian
>  
>

use positive logic

> +                        if (!empty($headerPos))    {
> +                            $accessibleHeader = '
> headers="'.$headerIdPrefix.(($headerScope=='col')?$a:$k).'"';
> +                        } else {
> +                            $accessibleHeader = '';
> +                        }


                        if (empty($headerPos))    {
                            $accessibleHeader = '';
                        } else {
                            $accessibleHeader = '
headers="'.$headerIdPrefix.(($headerScope=='col')?$a:$k).'"';
                        }


+1


- Franz




More information about the TYPO3-team-core mailing list