I've recently started using grocery_CRUD, great lib. Recently I'm developing a project with grocery_CRUD v1.1.4 and the newest CI 2.1. Today I've found out, that something odd is going on while adding/updating html code. Basically TinyMCE is aligning an <img> tag for example using inline code, such as
style="float:left;"
so we receive html in this kind:
<img style="float: right;" [...]
but after update/add action it is shredded a bit and appears to be
<img right;"
Looks like the fragment
style="float:
is just cut out for some reason. Same happens to other html tags, like:
<p justify;">
I've tried to trace, where this could happen, but no luck yet. I've checked if this is happening before sending POST, but in the POST data it appears ok, so there's something going on deeper. It's a quite big issue, so please, help with this one.
Greetings,
ghenesis