diff options
author | spocky <spocky@ampache> | 2008-01-15 10:44:25 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2008-01-15 10:44:25 +0000 |
commit | 675367cb4149e2806d1448a988b5adee74bc3b94 (patch) | |
tree | d079e256cead862b7bc1d7c0654dd56267833f6b /templates/show_songs.inc.php | |
parent | 2d5f2e996f08953227f4f2303f3f0bee448e41a6 (diff) | |
download | ampache-675367cb4149e2806d1448a988b5adee74bc3b94.tar.gz ampache-675367cb4149e2806d1448a988b5adee74bc3b94.tar.bz2 ampache-675367cb4149e2806d1448a988b5adee74bc3b94.zip |
Fixed a missing bottom column in browse songs
Diffstat (limited to 'templates/show_songs.inc.php')
-rw-r--r-- | templates/show_songs.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/show_songs.inc.php b/templates/show_songs.inc.php index 05d8e679..bbc2ab60 100644 --- a/templates/show_songs.inc.php +++ b/templates/show_songs.inc.php @@ -66,6 +66,9 @@ $ajax_url = Config::get('ajax_url'); <th class="cel_genre"><?php echo _('Genre'); ?></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_action"><?php echo _('Action'); ?></th> </tr> </table> |