From 48e42c1b8cd28384dd7e52de8f0a4512e5dc3b4c Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Sat, 11 Feb 2006 17:19:58 +0000 Subject: fixed album add to playlist mojo --- docs/CHANGELOG | 2 ++ playlist.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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']; -- cgit