First of all thanks for developing such a great framework ! Xataface is really a great RAD tool for PHP.
We are planning to use Xataface to implement some web applications in my university in Belgium but we have detected an issue : when displaying a record the description in the "dataface-view-description" div is html-encoded twice when the description field is a htmlarea widget.
The consequence is that "é" is encoded to "é" in the html code and thus displayed as "é" by the browser instead of "é".
The only way I found to avoid this is to change the configuration of FCKEditor in fckconfig.js :
- Code: Select all
FCKConfig.ProcessHTMLEntities = false ;
But it's probably not the best way to solve the problem.
Is it possible that the rendering code detect that the content of the database field used for the description in $rv->description (at line 149 of templates/Dataface_View_Record.html) is already encoded ?
Maybe it would be better not to html-encode the content of the field in the database ?
Do you have any idea ? Is it possible to solve this issue in a future release ?
Best Regards,