[TYPO3-core] RFC: alphabetically sorted TS tree in TS Object Browser

Franz Holzinger franz at fholzinger.com
Tue Dec 12 12:07:17 CET 2006


Hello Ingmar,

> (I've tested the patch, +1)
> 
> ---
> 
> This is a SVN patch request
> 
> Description:
> 
> When using the TS Object Browser to configure TYPO3 it is especially
> time consuming in long lists like under plugin.tt_news to find a certain
> property because the list is not ordered alphabetically.
> Having the list of properties sorted alphabetically will increase
> usability and reduce time spent looking for a certain property.
> 
a very helpful feature

+1 

>  
>  		reset($arr);
> +		ksort($arr);
change the order these 2 lines.
I do not know if the ksort could touch the order of the array items for
the next loop. 

ksort($arr);
reset($arr);


- Franz






More information about the TYPO3-team-core mailing list