summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-09-30 11:08:30 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-09 15:53:34 +0200
commit2fc3068d1b796152f374cfba3528f4273ad37bce (patch)
tree861b45f5a6b7da08640882405c3d62d96dfe99b3 /app
parent5e2a01d61f69d1720cea98c6d54f09505a47e08e (diff)
Add space after tag icon
Fix https://github.com/marienfressinaud/FreshRSS/issues/643
Diffstat (limited to 'app')
-rw-r--r--app/views/helpers/view/normal_view.phtml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/helpers/view/normal_view.phtml b/app/views/helpers/view/normal_view.phtml
index 1dbf14f4c..6d9789f8d 100644
--- a/app/views/helpers/view/normal_view.phtml
+++ b/app/views/helpers/view/normal_view.phtml
@@ -153,14 +153,15 @@ if (!empty($this->entries)) {
if (!empty($tags)) {
?><li class="item">
<div class="dropdown">
- <div id="dropdown-tags-<?php echo $item->id ();?>" class="dropdown-target"></div>
- <a class="dropdown-toggle" href="#dropdown-tags-<?php echo $item->id ();?>"><?php
- echo FreshRSS_Themes::icon('tag'), Minz_Translate::t ('related_tags');
+ <div id="dropdown-tags-<?php echo $item->id();?>" class="dropdown-target"></div>
+ <?php echo _i('tag'); ?>
+ <a class="dropdown-toggle" href="#dropdown-tags-<?php echo $item->id();?>"><?php
+ echo _t('related_tags');
?></a>
<ul class="dropdown-menu">
<li class="dropdown-close"><a href="#close">❌</a></li><?php
foreach($tags as $tag) {
- ?><li class="item"><a href="<?php echo _url ('index', 'index', 'search', urlencode ('#' . $tag)); ?>"><?php echo $tag; ?></a></li><?php
+ ?><li class="item"><a href="<?php echo _url('index', 'index', 'search', urlencode('#' . $tag)); ?>"><?php echo $tag; ?></a></li><?php
} ?>
</ul>
</div>