Add space after tag icon

Fix https://github.com/marienfressinaud/FreshRSS/issues/643
This commit is contained in:
Marien Fressinaud
2014-09-30 11:08:30 +02:00
parent 5e2a01d61f
commit 2fc3068d1b

View File

@@ -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>