summaryrefslogtreecommitdiffstats
path: root/templates/show_playlists.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-14 01:38:50 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-14 01:38:50 +0000
commitd7c3ede9e757dab9889503a415d78c7937a311b3 (patch)
tree4311b7aac78600968bdb151c6873eaca80caee5f /templates/show_playlists.inc.php
parentfda4bd6deb683fc937f1ae831d9c8ed5b4748eaf (diff)
downloadampache-d7c3ede9e757dab9889503a415d78c7937a311b3.tar.gz
ampache-d7c3ede9e757dab9889503a415d78c7937a311b3.tar.bz2
ampache-d7c3ede9e757dab9889503a415d78c7937a311b3.zip
fixed public/private aspect of playlists, default is to filter out non-owned private playlists now
Diffstat (limited to 'templates/show_playlists.inc.php')
-rw-r--r--templates/show_playlists.inc.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/show_playlists.inc.php b/templates/show_playlists.inc.php
index 5707c772..553d65f5 100644
--- a/templates/show_playlists.inc.php
+++ b/templates/show_playlists.inc.php
@@ -25,6 +25,7 @@
<colgroup>
<col id="col_add" />
<col id="col_playlist" />
+ <col id="col_type" />
<col id="col_songs" />
<col id="col_owner" />
<col id="col_action" />
@@ -32,6 +33,7 @@
<tr class="th-top">
<th class="cel_add"><?php echo _('Add'); ?></th>
<th class="cel_playlist"><?php echo Ajax::text('?page=browse&action=set_sort&sort=name',_('Playlist Name'),'playlist_sort_name'); ?></th>
+ <th class="cel_type">&nbsp;</th>
<th class="cel_songs"><?php echo _('# Songs'); ?></th>
<th class="cel_owner"><?php echo Ajax::text('?page=browse&action=set_sort&sort=user',_('Owner'),'playlist_sort_owner'); ?></th>
<th class="cel_action"><?php echo _('Actions'); ?></th>
@@ -49,8 +51,9 @@ foreach ($object_ids as $playlist_id) {
<tr class="th-bottom">
<th class="cel_add"><?php echo _('Add'); ?></th>
<th class="cel_playlist"><?php echo Ajax::text('?page=browse&action=set_sort&sort=name',_('Playlist Name'),'playlist_sort_name_bottom'); ?></th>
+ <th class="cel_type">&nbsp;</th>
<th class="cel_songs"><?php echo _('# Songs'); ?></th>
- <th class="cel_owner"><?php echo Ajax::text('?page=browse&action=set_sort&sort=user',_('Owner'),'playlist_sort_owner'); ?></th>
+ <th class="cel_owner"><?php echo Ajax::text('?page=browse&action=set_sort&sort=user',_('Owner'),'playlist_sort_owner_bottom'); ?></th>
<th class="cel_action"><?php echo _('Actions'); ?></th>
</tr>
</table>