I have a problem with the render method of this class.
When I try to do :
echo $myObject->render('field_name'); // For example
the string returned si not :
- Code: Select all
<input type="checkbox" name="field_name" checked="checked" id="field_name" />
but :
- Code: Select all
<input type="checkbox" name="field_name" checked="checked" id="field_name" />
Why ? What can I do ?
I see nothing in the api documentation about it. The only way is to do : html_entity_decode() on the string, and it sucks.
Thank you very much
