diff options
Diffstat (limited to 'templates/show_albums.inc')
-rw-r--r-- | templates/show_albums.inc | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/templates/show_albums.inc b/templates/show_albums.inc index da6a505c..e23f88e8 100644 --- a/templates/show_albums.inc +++ b/templates/show_albums.inc @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2005 Ampache.org + Copyright (c) 2001 - 2006 Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -37,8 +37,10 @@ $total_items = $view->total_items; <td> <a href="<?php echo $web_path; ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=album.name&sort_order=0"><?php echo _("Album"); ?></a> </td> - <td> <?php echo _("Artist"); ?> </td> - <td> <?php echo _("Songs"); ?> </td> + <td> + <a href="<?php echo $web_path; ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=artist.name&type=album_sort"><?php echo _('Artist'); ?></a> + </td> + <td> <?php echo _('Songs'); ?> </td> <td> <a href="<?php echo $web_path; ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=album.year&sort_order=0"><?php echo _("Year"); ?></a> </td> @@ -67,12 +69,14 @@ foreach ($albums as $album) { <td> <a href="<?php echo $web_path; ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=album.name&sort_order=0"><?php echo _("Album"); ?></a> </td> - <td> <?php echo _("Artist"); ?> </td> - <td> <?php echo _("Songs"); ?> </td> + <td> + <a href="<?php echo $web_path; ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=artist.name&type=album_sort"><?php echo _('Artist'); ?></a> + </td> + <td><?php echo _('Songs'); ?></td> <td> <a href="<?php echo $web_path; ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=album.year&sort_order=0"><?php echo _("Year"); ?></a> </td> - <td> <?php echo _("Action"); ?> </td> + <td><?php echo _('Action'); ?></td> </tr> <tr class="even" align="center"> <td colspan="5"> |