diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-17 03:11:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-17 03:11:06 +0000 |
commit | 88562955f9c96d8d347acc8c12cdf33adab04f94 (patch) | |
tree | ad90a912041f32aeeef6fb662ad4d91c67c34c0b /templates/show_artists.inc.php | |
parent | d1dcfcbc903153007fff2c155248046ecfbdc76a (diff) | |
download | ampache-88562955f9c96d8d347acc8c12cdf33adab04f94.tar.gz ampache-88562955f9c96d8d347acc8c12cdf33adab04f94.tar.bz2 ampache-88562955f9c96d8d347acc8c12cdf33adab04f94.zip |
added sorting on most objects in most views, report bugs if you find points where sorting fails
Diffstat (limited to 'templates/show_artists.inc.php')
-rw-r--r-- | templates/show_artists.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_artists.inc.php b/templates/show_artists.inc.php index da95eadc..3b7c1344 100644 --- a/templates/show_artists.inc.php +++ b/templates/show_artists.inc.php @@ -28,11 +28,11 @@ $web_path = Config::get('web_path'); </td> </tr> <tr class="table-header"> - <td><?php echo _('Add'); ?> - <td><?php echo _('Artist'); ?></td> - <td> <?php echo _('Songs'); ?> </td> - <td> <?php echo _('Albums'); ?> </td> - <td> <?php echo _('Action'); ?> </td> + <th><?php echo _('Add'); ?></th> + <th><?php echo Ajax::text('?page=browse&action=set_sort&sort=name',_('Artist'),'artist_sort_name'); ?></th> + <th> <?php echo _('Songs'); ?> </th> + <th> <?php echo _('Albums'); ?> </th> + <th> <?php echo _('Action'); ?> </th> </tr> <?php /* Foreach through every artist that has been passed to us */ |