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:
Daniel Rodriguez 2020-06-02 09:55:05 +02:00
commit 6cf96a0fad
1 changed files with 1 additions and 1 deletions

View File

@ -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'];
}