summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-17 15:07:22 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-17 15:07:22 +0000
commitb6a7f890d97b88a6dfbcc48d883132e9be44cfda (patch)
treea16d4460c058446df03e94f79ceee6a422528ed7 /templates
parent8448a0fc84ba25e6fd949b8162e3d1c96948d808 (diff)
downloadampache-b6a7f890d97b88a6dfbcc48d883132e9be44cfda.tar.gz
ampache-b6a7f890d97b88a6dfbcc48d883132e9be44cfda.tar.bz2
ampache-b6a7f890d97b88a6dfbcc48d883132e9be44cfda.zip
fixed typo preventing deletion of users
Diffstat (limited to 'templates')
-rw-r--r--templates/show_playlist.inc.php4
-rw-r--r--templates/show_playlists.inc.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_playlist.inc.php b/templates/show_playlist.inc.php
index 1b8b899d..cd31488a 100644
--- a/templates/show_playlist.inc.php
+++ b/templates/show_playlist.inc.php
@@ -28,8 +28,8 @@ $web_path = Config::get('web_path');
<div id="information_actions">
<ul>
<li><a href="<?php echo $web_path; ?>/playlist.php?action=normalize_tracks&amp;playlist_id=<?php echo $playlist->id; ?>"><?php echo _('Normalize Tracks'); ?></a></li>
- <li><?php echo Ajax::text('?action=basket&type=playlist&id=' . $playlist->id,_('Play All'),'play_playlist'); ?></li>
- <li><?php echo Ajax::text('?action=basket&type=playlist_random&id=' . $playlist->id,_('Play Random'),'play_playlist'); ?></li>
+ <li><?php echo Ajax::text('?action=basket&type=playlist&id=' . $playlist->id,_('Add All'),'play_playlist'); ?></li>
+ <li><?php echo Ajax::text('?action=basket&type=playlist_random&id=' . $playlist->id,_('Add Random'),'play_playlist'); ?></li>
</ul>
</div>
<?php show_box_bottom(); ?>
diff --git a/templates/show_playlists.inc.php b/templates/show_playlists.inc.php
index ae2d6ecb..5707c772 100644
--- a/templates/show_playlists.inc.php
+++ b/templates/show_playlists.inc.php
@@ -33,7 +33,7 @@
<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_songs"><?php echo _('# Songs'); ?></th>
- <th class="cel_owner"><?php echo _('Owner'); ?></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>
</tr>
<?php
@@ -50,7 +50,7 @@ foreach ($object_ids as $playlist_id) {
<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_songs"><?php echo _('# Songs'); ?></th>
- <th class="cel_owner"><?php echo _('Owner'); ?></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>
</tr>
</table>