index/actions: to not escape summary info

This commit is contained in:
Thomas Gelf 2016-02-18 13:48:38 +01:00
parent ea8da2172f
commit 25deed9c60
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
<h1><?= $this->escape($title) ?></h1>
<h1 style="clear: both"><?= $this->escape($title) ?></h1>
<ul class="main-actions" data-base-target="_next">
<?php foreach ($actions as $a): ?>
<li>
<a href="<?= $this->url($a[2]) ?>">
<?= $this->icon($a[0]) ?>
<?= $this->escape($a[1]) ?>
<p><?= $this->escape($a[3]) ?></p>
<p><?= $a[3] ?></p>
</a>
</li>
<?php endforeach ?>