We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487abd7 commit 649b7bfCopy full SHA for 649b7bf
src/View/Helper/ToolbarHelper.php
@@ -78,7 +78,7 @@ public function makeNeatArray($values, $openDepth = 0, $currentDepth = 0, $doubl
78
$values[] = '(empty)';
79
}
80
foreach ($values as $key => $value) {
81
- $out .= '<li><strong>' . $key . '</strong>';
+ $out .= '<li><strong>' . h($key, $doubleEncode) . '</strong>';
82
if (is_array($value) && count($value) > 0) {
83
$out .= '(array)';
84
} elseif (is_object($value)) {
0 commit comments