You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When saving stuff to database, using $entity->property, with property being cast as json-array it does a poor job of saving for russian, and I suspect other languages. Is it possible to set line 374 in system/Entity.php to this: json_encode($value, JSON_UNESCAPED_UNICODE);
Add JSON_UNESCAPED_UNICODE to handle different languages? Otherwise it takes a lot of space in database when each letter is represented as \u043d (for example)
CodeIgniter 4 version
4.0.3
Affected module(s)
CodeIgniter\Entity
The text was updated successfully, but these errors were encountered:
Describe the bug
When saving stuff to database, using $entity->property, with property being cast as json-array it does a poor job of saving for russian, and I suspect other languages. Is it possible to set line 374 in system/Entity.php to this: json_encode($value, JSON_UNESCAPED_UNICODE);
Add JSON_UNESCAPED_UNICODE to handle different languages? Otherwise it takes a lot of space in database when each letter is represented as \u043d (for example)
CodeIgniter 4 version
4.0.3
Affected module(s)
CodeIgniter\Entity
The text was updated successfully, but these errors were encountered: