summaryrefslogtreecommitdiffstats
path: root/playlist.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-01-05 06:19:22 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-01-05 06:19:22 +0000
commit6daae3271c5126c2cd4c08b98b451ebe51fa90e0 (patch)
treefc2f1527670ae6fd9d9f7b56529e5938b808fe40 /playlist.php
parent75aa0cf62494939224098ca60bbef000b21a3c23 (diff)
downloadampache-6daae3271c5126c2cd4c08b98b451ebe51fa90e0.tar.gz
ampache-6daae3271c5126c2cd4c08b98b451ebe51fa90e0.tar.bz2
ampache-6daae3271c5126c2cd4c08b98b451ebe51fa90e0.zip
fixed up some more playlist stuff
Diffstat (limited to 'playlist.php')
-rw-r--r--playlist.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/playlist.php b/playlist.php
index 02b64665..914a167c 100644
--- a/playlist.php
+++ b/playlist.php
@@ -114,7 +114,7 @@ switch ($action) {
access_denied();
break;
}
- $playlist->remove_songs($_REQUEST['song_ids']);
+ $playlist->remove_songs($_REQUEST['song']);
show_playlist($playlist);
break;
case 'update':
@@ -139,6 +139,7 @@ switch ($action) {
show_import_playlist();
break;
case 'set_track_numbers':
+ print_r($_REQUEST);
/* Make sure they have permission */
if (!$GLOBALS['user']->has_access(100) && $GLOBALS['user']->username != $playlist->user) {
access_denied();