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:
parent
0d5517d8b8
commit
48e42c1b8c
2 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue