From 06ae3a61e8813c60f6b12e970c7a3d727ed56ef3 Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Thu, 30 Apr 2020 15:39:32 +0900 Subject: [PATCH] Fixed widget title corruption in dashboard with multi-byte characters. --- pandora_console/include/lib/Dashboard/Cell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Cell.php b/pandora_console/include/lib/Dashboard/Cell.php index df93bbdfec..fdc6b3366d 100644 --- a/pandora_console/include/lib/Dashboard/Cell.php +++ b/pandora_console/include/lib/Dashboard/Cell.php @@ -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']; }