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_songs.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_songs.inc.php')
-rw-r--r-- | templates/show_songs.inc.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/templates/show_songs.inc.php b/templates/show_songs.inc.php index 1512c67e..a96739fb 100644 --- a/templates/show_songs.inc.php +++ b/templates/show_songs.inc.php @@ -30,7 +30,6 @@ $ajax_url = Config::get('ajax_url'); <col id="col_song" /> <col id="col_artist" /> <col id="col_album" /> - <col id="col_genre" /> <col id="col_track" /> <col id="col_time" /> <col id="col_rating" /> @@ -41,7 +40,7 @@ $ajax_url = Config::get('ajax_url'); <th class="cel_song"><?php echo Ajax::text('?page=browse&action=set_sort&sort=title',_('Song Title'),'sort_song_title'); ?></th> <th class="cel_artist"><?php echo _('Artist'); ?></th> <th class="cel_album"><?php echo _('Album'); ?></th> - <th class="cel_genre"><?php echo _('Genre'); ?></th> + <th class="cel_tags"><?php echo _('Tags'); ?></th> <th class="cel_track"><?php echo Ajax::text('?page=browse&action=set_sort&sort=track',_('Track'),'sort_song_track'); ?></th> <th class="cel_time"><?php echo Ajax::text('?page=browse&action=set_sort&sort=time',_('Time'),'sort_song_time'); ?></th> <?php if (Config::get('ratings')) { @@ -49,7 +48,6 @@ $ajax_url = Config::get('ajax_url'); ?> <th class="cel_rating"><?php echo _('Rating'); ?></th> <?php } ?> - <th class="cel_tags"><?php echo _('Tags'); ?></th> <th class="cel_action"><?php echo _('Action'); ?></th> </tr> <?php @@ -71,13 +69,12 @@ $ajax_url = Config::get('ajax_url'); <th class="cel_song"><?php echo Ajax::text('?page=browse&action=set_sort&sort=title',_('Song Title'),'sort_song_title_bottom'); ?></th> <th class="cel_artist"><?php echo _('Artist'); ?></th> <th class="cel_album"><?php echo _('Album'); ?></th> - <th class="cel_genre"><?php echo _('Genre'); ?></th> + <th class="cel_tags"><?php echo _('Tags'); ?></th> <th class="cel_track"><?php echo Ajax::text('?page=browse&action=set_sort&sort=track',_('Track'),'sort_song_track_bottom'); ?></th> <th class="cel_time"><?php echo Ajax::text('?page=browse&action=set_sort&sort=time',_('Time'),'sort_song_time_bottom'); ?></th> <?php if (Config::get('ratings')) { ?> <th class="cel_rating"><?php echo _('Rating'); ?></th> <?php } ?> - <th class="cel_tags"><?php echo _('Tags'); ?></th> <th class="cel_action"><?php echo _('Action'); ?></th> </tr> </table> |