Fixed widget title corruption in dashboard with multi-byte characters.
This commit is contained in:
parent
8a019bd8f4
commit
06ae3a61e8
|
@ -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