diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-11 17:19:58 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-11 17:19:58 +0000 |
commit | 48e42c1b8cd28384dd7e52de8f0a4512e5dc3b4c (patch) | |
tree | 80cb0662c88e0b0111253539d4aa6252e5cc1c99 | |
parent | 0d5517d8b8d9d354385b26b05ef7a71d467670d0 (diff) | |
download | ampache-48e42c1b8cd28384dd7e52de8f0a4512e5dc3b4c.tar.gz ampache-48e42c1b8cd28384dd7e52de8f0a4512e5dc3b4c.tar.bz2 ampache-48e42c1b8cd28384dd7e52de8f0a4512e5dc3b4c.zip |
fixed album add to playlist mojo
-rwxr-xr-x | docs/CHANGELOG | 2 | ||||
-rw-r--r-- | playlist.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 5db29f0e..0808c354 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.3.2-Beta2 + - Fixed a problem with not being able to add Albums to a playlist + (Thx eudaimon) - Fixed a problem with browsing genres that would incorrectly put 'Browse' in the Showing Genres Starting With: box - Fixed some unescaped ID's in class constructors. diff --git a/playlist.php b/playlist.php index dbe46757..828784bd 100644 --- a/playlist.php +++ b/playlist.php @@ -75,7 +75,7 @@ switch ($action) { access_denied(); } if ($_REQUEST['type'] == 'album') { - $song_ids = get_songs_from_type($_REQUEST['type'],$_REQUEST['song_ids'],$_REQUEST['artist_id']); + $song_ids = get_songs_from_type($_REQUEST['type'],$_REQUEST['song'],$_REQUEST['artist_id']); } else { $song_ids = $_REQUEST['song']; |