1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-06 11:59:56 +02:00

fixed album add to playlist mojo

This commit is contained in:
Karl 'vollmerk' Vollmer 2006-02-11 17:19:58 +00:00
parent 0d5517d8b8
commit 48e42c1b8c
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,8 @@
-------------------------------------------------------------------------- --------------------------------------------------------------------------
v.3.3.2-Beta2 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 - Fixed a problem with browsing genres that would incorrectly put
'Browse' in the Showing Genres Starting With: box 'Browse' in the Showing Genres Starting With: box
- Fixed some unescaped ID's in class constructors. - Fixed some unescaped ID's in class constructors.

View file

@ -75,7 +75,7 @@ switch ($action) {
access_denied(); access_denied();
} }
if ($_REQUEST['type'] == 'album') { 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 { else {
$song_ids = $_REQUEST['song']; $song_ids = $_REQUEST['song'];