diff options
Diffstat (limited to 'templates/show_song_row.inc.php')
-rw-r--r-- | templates/show_song_row.inc.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php index 1dc3d1ed..29a37988 100644 --- a/templates/show_song_row.inc.php +++ b/templates/show_song_row.inc.php @@ -31,6 +31,12 @@ <?php if (Config::get('ratings')) { ?> <td class="cel_rating" id="rating_<?php echo $song->id; ?>_song"><?php Rating::show($song->id,'song'); ?></td> <?php } ?> +<td class="cel_tags"><?php +global $tag_cache; +$tags = $tag_cache[intval($song->id)]; //TagCloud::get_tags('song', array($song->id)); +foreach($tags as $i) + echo $i['name'] . ' '; +?></td> <td class="cel_action"> <?php if (Config::get('shoutbox')) { ?> <a href="<?php echo Config::get('web_path'); ?>/shout.php?action=show_add_shout&type=song&id=<?php echo $song->id; ?>"> |