[Typo3-dev] array from TS Setup - remove dots in keys

Stefan Beylen intsys at swissinfo.org
Wed Jun 29 21:39:56 CEST 2005


Hello,

is there any possibility to build an array in TS that is rendered 
without dots in the $conf?

the array I make in TS looks like that 4ex:
---8<---snip---
fields{
	age{
		type = SELECT
	}
}
---8<---snap---

what i get is:
---8<---snip---
[fields.] => Array
        (
        [age.] => Array
               (
               [type] => SELECT
		)
	)
---8<---snap---

what I want is:
---8<---snip---
[fields] => Array
        (
        [age] => Array
               (
               [type] => SELECT
		)
	)
---8<---snap---

those dots are killing me...

thx!




More information about the TYPO3-dev mailing list