summaryrefslogtreecommitdiffstats
path: root/templates/show_tagcloud.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-10-29 06:47:00 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-10-29 06:47:00 +0000
commite8559dd683eba762b2bd374c731e7f7e8116bf70 (patch)
treed14ca2253febee2ea214d3501b02ca4e59010d2f /templates/show_tagcloud.inc.php
parentf593f18131d6a0cbf30b558b208e86b9fc957f13 (diff)
downloadampache-e8559dd683eba762b2bd374c731e7f7e8116bf70.tar.gz
ampache-e8559dd683eba762b2bd374c731e7f7e8116bf70.tar.bz2
ampache-e8559dd683eba762b2bd374c731e7f7e8116bf70.zip
fix http auth issues, fix missing line sfrom dipsols patch, few other minor things
Diffstat (limited to 'templates/show_tagcloud.inc.php')
-rw-r--r--templates/show_tagcloud.inc.php7
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 } ?>