diff options
| author | wjames5 <will@tekimaki.com> | 2007-05-08 01:54:59 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2007-05-08 01:54:59 +0000 |
| commit | 623b66f33f2ea6811573e2819bc30093a4c0299d (patch) | |
| tree | 12aae01278bbaf823b593c5c48d801098628076c /templates | |
| parent | 952ab682297dea6db97b061a913cbfef05ea548b (diff) | |
| download | tags-623b66f33f2ea6811573e2819bc30093a4c0299d.tar.gz tags-623b66f33f2ea6811573e2819bc30093a4c0299d.tar.bz2 tags-623b66f33f2ea6811573e2819bc30093a4c0299d.zip | |
escape tag names in cloud urls
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/tags_cloud.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/tags_cloud.tpl b/templates/tags_cloud.tpl index 100c27d..e269972 100644 --- a/templates/tags_cloud.tpl +++ b/templates/tags_cloud.tpl @@ -2,7 +2,7 @@ {if $tagData} <ul id="cloud"> {foreach item=tag from=$tagData} - <li class="tag{$tag.tagscale}"><a href="{$smarty.const.TAGS_PKG_URL}index.php?tags={$tag.tag}">{$tag.tag}</a> <small>({$tag.popcant})</small></li> + <li class="tag{$tag.tagscale}"><a href="{$smarty.const.TAGS_PKG_URL}index.php?tags={$tag.tag}">{$tag.tag|escape:"url"}</a> <small>({$tag.popcant})</small></li> {/foreach} </ul> {else} |
