[TYPO3-project-formidable] How to make a dynamic listHeader

Jerome Schneider typo3dev at ameos.com
Fri Feb 27 14:52:14 CET 2009


Hi Sanosuke and Hauke !
I checked in the code and this is caused by a bug in the lister class.
I fixed it and it will be available in upcoming revision (2.0.233)

Thanks for reporting !
Jerome Schneider



Hauke Hain a écrit :
> Hi Anthony,
> 
> I do not know how to solve your problem, but this:
> "Sanosuke303" <sanosuke303 at yahoo.fr> schrieb im Newsbeitrag 
> news:mailman.46497.1235734294.2904.typo3-project-formidable at lists.netfielders.de... 
> 
> <listHeader>
>    <userobj>
> <php><![CDATA[
>     $var_header = "";
> 
>     return $var_header
> ]]></php>
>    </userobj>
> </listHeader>
> 
> But the listHeader is shown with this value "Array".
> 
> 
> looks like if you try to output all items of your array with return $array;
> This does not work. Try the implode function: 
> http://www.php.net/manual/en/function.implode.php
> 
> 
> <listHeader>
>    <userobj>
> <php><![CDATA[
>     $var_header = "";
> 
>     return implode($var_header);
> ]]></php>
>    </userobj>
> </listHeader>
> 
> 
> Regards,
> Hauke


More information about the TYPO3-project-formidable mailing list