aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-09-08 20:52:37 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-09-08 20:52:37 +0200
commit9fcdaf99e24a23724c2b95b29b85b8112b6263fb (patch)
tree02bdf15a329d35139e975c469c1fe4aeb7751405
parent757b879261cd23b56d20de98a63e13a8cae32621 (diff)
Error encoding tag link
https://github.com/FreshRSS/FreshRSS/issues/970
-rw-r--r--app/views/helpers/index/normal/entry_bottom.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/index/normal/entry_bottom.phtml b/app/views/helpers/index/normal/entry_bottom.phtml
index 20b4b332c..66c9d0e74 100644
--- a/app/views/helpers/index/normal/entry_bottom.phtml
+++ b/app/views/helpers/index/normal/entry_bottom.phtml
@@ -71,7 +71,7 @@
<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>