diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-14 01:38:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-14 01:38:50 +0000 |
commit | d7c3ede9e757dab9889503a415d78c7937a311b3 (patch) | |
tree | 4311b7aac78600968bdb151c6873eaca80caee5f /templates/show_playlist.inc.php | |
parent | fda4bd6deb683fc937f1ae831d9c8ed5b4748eaf (diff) | |
download | ampache-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_playlist.inc.php')
-rw-r--r-- | templates/show_playlist.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_playlist.inc.php b/templates/show_playlist.inc.php index 0c72526c..622e266b 100644 --- a/templates/show_playlist.inc.php +++ b/templates/show_playlist.inc.php @@ -24,7 +24,7 @@ */ $web_path = Config::get('web_path'); ?> -<?php show_box_top($playlist->name . ' ' . _('Playlist')); ?> +<?php show_box_top($playlist->f_type . ' ' . $playlist->name . ' ' . _('Playlist')); ?> <div id="information_actions"> <ul> <li><a href="<?php echo $web_path; ?>/playlist.php?action=normalize_tracks&playlist_id=<?php echo $playlist->id; ?>"><?php echo _('Normalize Tracks'); ?></a></li> |