diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-01-06 19:54:44 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-01-06 19:54:44 +0100 |
commit | eefb636cea7acef9ddfd02a90749820f5fafc9f6 (patch) | |
tree | 2191ab4e2d79b35bb072b0495a1c58bec213c21f | |
parent | 2c75f8e780e674ddb42c935b54ed6c39925ba07c (diff) | |
download | Shaarli-eefb636cea7acef9ddfd02a90749820f5fafc9f6.tar.gz Shaarli-eefb636cea7acef9ddfd02a90749820f5fafc9f6.tar.zst Shaarli-eefb636cea7acef9ddfd02a90749820f5fafc9f6.zip |
Fixes a bug preventing to remove a tag with special chars when searching
-rw-r--r-- | tpl/linklist.html | 2 |
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} |