aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-01-06 19:54:44 +0100
committerArthurHoaro <arthur@hoa.ro>2016-01-06 19:54:44 +0100
commiteefb636cea7acef9ddfd02a90749820f5fafc9f6 (patch)
tree2191ab4e2d79b35bb072b0495a1c58bec213c21f /tpl
parent2c75f8e780e674ddb42c935b54ed6c39925ba07c (diff)
downloadShaarli-eefb636cea7acef9ddfd02a90749820f5fafc9f6.tar.gz
Shaarli-eefb636cea7acef9ddfd02a90749820f5fafc9f6.tar.zst
Shaarli-eefb636cea7acef9ddfd02a90749820f5fafc9f6.zip
Fixes a bug preventing to remove a tag with special chars when searching
Diffstat (limited to 'tpl')
-rw-r--r--tpl/linklist.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/linklist.html b/tpl/linklist.html
index 09860baf..6ce59dd8 100644
--- a/tpl/linklist.html
+++ b/tpl/linklist.html
@@ -53,7 +53,7 @@
53 <div id="searchcriteria">{$result_count} results for tags <i> 53 <div id="searchcriteria">{$result_count} results for tags <i>
54 {loop="search_crits"} 54 {loop="search_crits"}
55 <span class="linktag" title="Remove tag"> 55 <span class="linktag" title="Remove tag">
56 <a href="?removetag={$value}">{$value} <span class="remove">x</span></a> 56 <a href="?removetag={function="urlencode($value)"}">{$value} <span class="remove">x</span></a>
57 </span> 57 </span>
58 {/loop}</i></div> 58 {/loop}</i></div>
59 {/if} 59 {/if}