diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-07 08:00:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-07 08:00:05 +0000 |
commit | c0455678c1f6644801e5c25cb07510e49db7b28d (patch) | |
tree | c32edccb9386316c8b6ff1f885efa8a66ac0d067 /templates/show_songs.inc.php | |
parent | 0dcbad80cde204cfda078b5fc16a92c41d74c87d (diff) | |
download | ampache-c0455678c1f6644801e5c25cb07510e49db7b28d.tar.gz ampache-c0455678c1f6644801e5c25cb07510e49db7b28d.tar.bz2 ampache-c0455678c1f6644801e5c25cb07510e49db7b28d.zip |
started work on the sorting, and added in album viewing that kinda works
Diffstat (limited to 'templates/show_songs.inc.php')
-rw-r--r-- | templates/show_songs.inc.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_songs.inc.php b/templates/show_songs.inc.php index e0fa49be..00a8decd 100644 --- a/templates/show_songs.inc.php +++ b/templates/show_songs.inc.php @@ -32,7 +32,9 @@ $ajax_url = Config::get('ajax_url'); </tr> <tr class="table-header"> <th><?php echo _('Add'); ?></th> - <th><?php echo _('Song Title'); ?></th> + <th onclick="ajaxPut('<?php echo $ajax_url; ?>?action=browse&sort=title');return true;" > + <?php echo _('Song Title'); ?> + </th> <th><?php echo _('Artist'); ?></th> <th><?php echo _('Album'); ?></th> </tr> |