Merge branch 'fix-widget-title-corruption' into 'develop'
Widget title corruption in dashboard with multi-byte characters. See merge request artica/pandorafms!3190
This commit is contained in:
commit
6cf96a0fad
|
@ -156,7 +156,7 @@ class Cell
|
|||
|
||||
// Options for widget.
|
||||
if (empty($options) !== true) {
|
||||
$options = json_encode($options);
|
||||
$options = json_encode($options, JSON_UNESCAPED_UNICODE);
|
||||
} else {
|
||||
$options = $this->fieldsCell['options'];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue