diff options
Diffstat (limited to 'templates/show_tagcloud.inc.php')
-rw-r--r-- | templates/show_tagcloud.inc.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/show_tagcloud.inc.php b/templates/show_tagcloud.inc.php index bde48898..aee8b960 100644 --- a/templates/show_tagcloud.inc.php +++ b/templates/show_tagcloud.inc.php @@ -21,3 +21,10 @@ */ $web_path = Config::get('web_path'); ?> +<?php foreach ($object_ids as $data) { + $tag = new Tag($data['id']); + $tag->format(); +?> +<span class="<?php echo $tag->f_class; ?>"><?php echo $tag->name; ?></span> + +<?php } ?> |