diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-19 01:23:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-19 01:23:35 +0000 |
commit | 49f48af532c2d3196d94b444c3514bdb1a499436 (patch) | |
tree | 253259963084d489364332a98762f2ae8116d5b7 /playlist.php | |
parent | 7206d2c97bce26f10daf9a4bdc662c261d461799 (diff) | |
download | ampache-49f48af532c2d3196d94b444c3514bdb1a499436.tar.gz ampache-49f48af532c2d3196d94b444c3514bdb1a499436.tar.bz2 ampache-49f48af532c2d3196d94b444c3514bdb1a499436.zip |
fixed add to playlists from albums, and multi-artist album display flaw
Diffstat (limited to 'playlist.php')
-rw-r--r-- | playlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playlist.php b/playlist.php index 081ff572..f8a03f4a 100644 --- a/playlist.php +++ b/playlist.php @@ -137,7 +137,7 @@ switch($action) { } if ($type === 'album') { - if ($song_ids = get_songs_from_type($type, $results, $artist_id)) { + if ($song_ids = get_songs_from_type($type, $song_ids, $artist_id)) { $playlist->add_songs($song_ids); } } |