diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-25 22:06:16 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-25 22:06:16 +0000 |
commit | 993a0a7a65f60f0d91b707b342a9367bf8afbbd9 (patch) | |
tree | 52fa645aedbf27b4c482fa91fe079160eb373518 /templates/show_song_row.inc.php | |
parent | af9da5bf95d4cc93fdde6402271a957d9c0a74b3 (diff) | |
download | ampache-993a0a7a65f60f0d91b707b342a9367bf8afbbd9.tar.gz ampache-993a0a7a65f60f0d91b707b342a9367bf8afbbd9.tar.bz2 ampache-993a0a7a65f60f0d91b707b342a9367bf8afbbd9.zip |
moved the browse menu onto home, removed the browse tag from the menu, removed genre from song views will eventually be replaced by tag. Added not enough data note to the recently played
Diffstat (limited to 'templates/show_song_row.inc.php')
-rw-r--r-- | templates/show_song_row.inc.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php index 29a37988..0026d5fd 100644 --- a/templates/show_song_row.inc.php +++ b/templates/show_song_row.inc.php @@ -25,18 +25,12 @@ <td class="cel_song"><?php echo $song->f_link; ?></td> <td class="cel_artist"><?php echo $song->f_artist_link; ?></td> <td class="cel_album"><?php echo $song->f_album_link; ?></td> -<td class="cel_genre"><?php echo $song->f_genre_link; ?></td> +<td class="cel_tags"></td> <td class="cel_track"><?php echo $song->f_track; ?></td> <td class="cel_time"><?php echo $song->f_time; ?></td> <?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; ?>"> |