summaryrefslogtreecommitdiff
path: root/modules/tag/views
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tag/views')
-rw-r--r--modules/tag/views/admin_tags.html.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/tag/views/admin_tags.html.php b/modules/tag/views/admin_tags.html.php
index 92b0f6b7..d6472706 100644
--- a/modules/tag/views/admin_tags.html.php
+++ b/modules/tag/views/admin_tags.html.php
@@ -2,7 +2,7 @@
<script>
$("document").ready(function() {
$("#gTagAdmin .tag-name").attr("title", "<?= t("Click to edit this tag") ?>");
- $("#gTagAdmin .delete-link").attr("title", "<?= t("Delete this tag") ?>");
+ $("#gTagAdmin .delete-link").attr("title", $(".delete-link:first span").html());
});
</script>
<div class="gBlock">
@@ -40,7 +40,8 @@
<li>
<span id="gTag-<?= $tag->id ?>" class="gEditable tag-name"><?= $tag->name ?></span>
<span class="understate">(<?= $tag->count ?>)</span>
- <a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>" class="gDialogLink delete-link">X</a>
+ <a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>" class="gDialogLink delete-link gButtonLink">
+ <span class="ui-icon ui-icon-trash"><?= t("Delete this tag") ?></span></a>
</li>
<? $column_tag_count++ ?>