We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 611f0d2 commit a7c81b7Copy full SHA for a7c81b7
templates/element/plugins_panel.php
@@ -16,6 +16,7 @@
16
* @var bool $hasEmptyAppConfig
17
* @var array $plugins
18
*/
19
+use function Cake\Core\h;
20
?>
21
<div class="c-plugins-panel">
22
<?php
@@ -37,7 +38,7 @@
37
38
<tbody>
39
<?php foreach ($plugins as $pluginName => $pluginConfig) : ?>
40
<tr>
- <td><?= $pluginName ?></td>
41
+ <td><?= h($pluginName) ?></td>
42
<td><?= $pluginConfig['isLoaded'] ? $this->Html->image('DebugKit./img/cake-red.svg') : '' ?></td>
43
<td><?= $pluginConfig['onlyDebug'] ? $this->Html->image('DebugKit./img/cake-red.svg') : '' ?></td>
44
<td><?= $pluginConfig['onlyCli'] ? $this->Html->image('DebugKit./img/cake-red.svg') : '' ?></td>
0 commit comments