summaryrefslogtreecommitdiffstats
path: root/templates/show_songs.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-21 05:22:33 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-21 05:22:33 +0000
commit968cb2a2812e13a845b79672e7a0b49cc7a807fa (patch)
treef90fa02366f3c21a779432bbef5a1b31c3d5d99a /templates/show_songs.inc.php
parent553d5a8c4a2a510f95e3ffb014ed982729d0f69d (diff)
downloadampache-968cb2a2812e13a845b79672e7a0b49cc7a807fa.tar.gz
ampache-968cb2a2812e13a845b79672e7a0b49cc7a807fa.tar.bz2
ampache-968cb2a2812e13a845b79672e7a0b49cc7a807fa.zip
fix filter + paging and add sort by artist and album on song browse
Diffstat (limited to 'templates/show_songs.inc.php')
-rw-r--r--templates/show_songs.inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_songs.inc.php b/templates/show_songs.inc.php
index 9fc4e932..7760d212 100644
--- a/templates/show_songs.inc.php
+++ b/templates/show_songs.inc.php
@@ -38,7 +38,7 @@ $ajax_url = Config::get('ajax_url');
<tr class="th-top">
<th class="cel_add"><?php echo _('Add'); ?></th>
<th class="cel_song"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=title',_('Song Title'),'sort_song_title'); ?></th>
- <th class="cel_artist"><?php echo _('Artist'); ?></th>
+ <th class="cel_artist"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=artist',_('Artist'),'sort_song_artist'); ?></th>
<th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=album',_('Album'),'sort_song_album'); ?></th>
<th class="cel_tags"><?php echo _('Tags'); ?></th>
<th class="cel_track"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=track',_('Track'),'sort_song_track'); ?></th>
@@ -67,8 +67,8 @@ $ajax_url = Config::get('ajax_url');
<tr class="th-bottom">
<th class="cel_add"><?php echo _('Add'); ?></th>
<th class="cel_song"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&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_artist"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=artist',_('Artist'),'sort_song_artist_bottom'); ?></th>
+ <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=album',_('Album'),'sort_song_album_bottom'); ?></th>
<th class="cel_tags"><?php echo _('Tags'); ?></th>
<th class="cel_track"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=track',_('Track'),'sort_song_track_bottom'); ?></th>
<th class="cel_time"><?php echo Ajax::text('?page=browse&action=set_sort&type=song&sort=time',_('Time'),'sort_song_time_bottom'); ?></th>