Merge pull request #54 from nodiscc/tagcloud-urlencode

use urlencode in tagcloud links
This commit is contained in:
Emilien Klein 2014-11-10 22:16:27 +01:00
commit f2b2ac8c79
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
<center>
<div id="cloudtag">
{loop="tags"}
<span style="color:#99f; font-size:9pt; padding-left:5px; padding-right:2px;">{$value.count}</span><a href="?searchtags={$key|htmlspecialchars}" style="font-size:{$value.size}pt; font-weight:bold; color:black; text-decoration:none">{$key|htmlspecialchars}</a>
<span style="color:#99f; font-size:9pt; padding-left:5px; padding-right:2px;">{$value.count}</span><a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}pt; font-weight:bold; color:black; text-decoration:none">{$key|htmlspecialchars}</a>
{/loop}
</div>
</center>