aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/tagcloud.html
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2016-10-16 17:41:08 +0200
committerVirtualTam <virtualtam@flibidi.net>2016-10-16 17:41:08 +0200
commitdec5fe9c6973054a1301982f910de86a19502b55 (patch)
treeb78d43b5692ee6d80ea4e1bb4ac5345c22b880a6 /tpl/tagcloud.html
parentbb70e690598d270951148e003a4dc253b05868b4 (diff)
downloadShaarli-dec5fe9c6973054a1301982f910de86a19502b55.tar.gz
Shaarli-dec5fe9c6973054a1301982f910de86a19502b55.tar.zst
Shaarli-dec5fe9c6973054a1301982f910de86a19502b55.zip
Cleanup: explicitely loop over PHP variables in templates
Relates to https://github.com/shaarli/Shaarli/issues/613 Before: {loop="someVariable"} After: {loop="$someVariable"} Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tpl/tagcloud.html')
-rw-r--r--tpl/tagcloud.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/tagcloud.html b/tpl/tagcloud.html
index e449f293..05e45273 100644
--- a/tpl/tagcloud.html
+++ b/tpl/tagcloud.html
@@ -11,7 +11,7 @@
11 </div> 11 </div>
12 12
13 <div id="cloudtag"> 13 <div id="cloudtag">
14 {loop="tags"} 14 {loop="$tags"}
15 <span class="count">{$value.count}</span><a 15 <span class="count">{$value.count}</span><a
16 href="?searchtags={$key|urlencode}" style="font-size:{$value.size}em;">{$key}</a> 16 href="?searchtags={$key|urlencode}" style="font-size:{$value.size}em;">{$key}</a>
17 {loop="$value.tag_plugin"} 17 {loop="$value.tag_plugin"}