Can I avoid encoding on save in a model?
If I use a model to save on database a spanish world with accent "ó" it stores in database like ó (html style) but if I save the same not via model it saves: \u00f3 and I need the 2nd one because Android (client) reads fine this texts from json utf8 header sent from php.
In my database char_set I have utf8 and collation utf8_general_ci
And in the config.php I have charset 'UTF-8'
Comments
... public $auto_encode_entities = FALSE; ...
When I disable it for that specific field everything works fine.
Just as a question, should this be a default behaviour for an enum? If the values are being changed on saving any not ASCII would be a problem in an enum.
By the way, this my first time working with FUEL and I'm loving it!