aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/tag/index.phtml6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/views/tag/index.phtml b/app/views/tag/index.phtml
index ee7fbad84..2f18842d4 100644
--- a/app/views/tag/index.phtml
+++ b/app/views/tag/index.phtml
@@ -28,10 +28,8 @@
<ul id="tagsList" <?= (count($this->tags) > 11) ? 'class="listInColumns"' : '' ?>>
<?php foreach ($this->tags as $tag): ?>
<li>
- <a href="<?= _url('tag', 'update', 'id', $tag->id()) ?>" class="configure open-slider" title="<?= _t('gen.action.manage') ?>">
- <?= _i('configure') ?>
- </a>
- <?= $tag->name() ?>
+ <a href="<?= _url('tag', 'update', 'id', $tag->id()) ?>" class="configure open-slider" title="<?= _t('gen.action.manage') ?>"><?= _i('configure') ?></a>
+ <span class="item-name"><?= $tag->name() ?></span>
</li>
<?php endforeach; ?>
</ul>