Merge remote-tracking branch 'origin/2.4' into develop

pull/7589/head
mokaddem 2021-07-26 12:29:47 +02:00
commit b9d8b9518c
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
if (isset($forkedClusterMeta)) {
foreach ($forkedClusterMeta as $key => $value) {
if (is_array($value)) {
$forkedClusterHtmlPreview .= sprintf('<div><b>%s: </b><div data-toggle="json" class="large-left-margin">%s</div></div>', h($key), json_encode($value));
$forkedClusterHtmlPreview .= sprintf('<div><b>%s: </b><div data-toggle="json" class="large-left-margin">%s</div></div>', h($key), json_encode(h($value)));
} else {
$forkedClusterHtmlPreview .= sprintf('<div><b>%s: </b>%s</div>', h($key), h($value));
}