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

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"> <ul class="main-actions" data-base-target="_next">
<?php foreach ($actions as $a): ?> <?php foreach ($actions as $a): ?>
<li> <li>
<a href="<?= $this->url($a[2]) ?>"> <a href="<?= $this->url($a[2]) ?>">
<?= $this->icon($a[0]) ?> <?= $this->icon($a[0]) ?>
<?= $this->escape($a[1]) ?> <?= $this->escape($a[1]) ?>
<p><?= $this->escape($a[3]) ?></p> <p><?= $a[3] ?></p>
</a> </a>
</li> </li>
<?php endforeach ?> <?php endforeach ?>