From 15d5b57af2466eebd3bbc531ead5dafa35d0a36e Mon Sep 17 00:00:00 2001 From: dpahuja Date: Wed, 16 Mar 2022 14:24:41 +0100 Subject: [PATCH] follow up to https://github.com/pimcore/data-hub/pull/462 --- src/Controller/ConfigController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/ConfigController.php b/src/Controller/ConfigController.php index 286ba4e6..1d248114 100644 --- a/src/Controller/ConfigController.php +++ b/src/Controller/ConfigController.php @@ -50,7 +50,7 @@ private function buildItem($configuration): array return [ 'id' => $name, - 'text' => $name, + 'text' => htmlspecialchars($name), 'type' => 'config', 'iconCls' => 'plugin_pimcore_datahub_icon_' . $type, 'expandable' => false,