Unverified Commit feb7f2ac authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(setup) Fix escaped HTML link in setup

issue #6122
Showing with 3 additions and 1 deletion
+3 -1
...@@ -34,7 +34,7 @@ class setupStepChecks extends setupStep ...@@ -34,7 +34,7 @@ class setupStepChecks extends setupStep
] ]
], ],
'setup' => [ 'setup' => [
'name' => _('PHP setup configuration (<a href="?info" target="_blank">show information</a>)'), 'name' => _('PHP setup configuration'),
'template' => get_template_path("setup_checks.tpl", TRUE, dirname(__FILE__)), 'template' => get_template_path("setup_checks.tpl", TRUE, dirname(__FILE__)),
'attrs' => [ 'attrs' => [
new FakeAttribute('config_checks') new FakeAttribute('config_checks')
......
<div id="{$sectionId}" class="plugin-section"> <div id="{$sectionId}" class="plugin-section">
<span class="legend"> <span class="legend">
{if !empty($sectionIcon)}<img src="{$sectionIcon|escape}" alt=""/>{/if}{$section|escape} {if !empty($sectionIcon)}<img src="{$sectionIcon|escape}" alt=""/>{/if}{$section|escape}
-
<a href="?info" target="_blank">{t}show information{/t}</a>
</span> </span>
<div> <div>
{foreach from=$attributes item=infos} {foreach from=$attributes item=infos}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment