summaryrefslogtreecommitdiffstats
path: root/stream.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-04-23 20:33:57 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-04-23 20:33:57 +0000
commit13dd43450a56bd72067b6f2350f5d188c5c7e254 (patch)
treeb2bc0d26b1f7f904a15322413a044035aeca0d0f /stream.php
parenta12f1083e30ae16ded9dc7aa464015ad07413632 (diff)
downloadampache-13dd43450a56bd72067b6f2350f5d188c5c7e254.tar.gz
ampache-13dd43450a56bd72067b6f2350f5d188c5c7e254.tar.bz2
ampache-13dd43450a56bd72067b6f2350f5d188c5c7e254.zip
fixed up part of single album view, show songs is all gone, working on replacement browse method
Diffstat (limited to 'stream.php')
-rw-r--r--stream.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream.php b/stream.php
index c2ccedf8..d4e1527b 100644
--- a/stream.php
+++ b/stream.php
@@ -89,7 +89,7 @@ switch ($action) {
break;
case 'artist':
$artist = new Artist($_REQUEST['artist_id']);
- $song_ids = $artist->get_song_ids();
+ $song_ids = $artist->get_songs();
break;
case 'artist_random':
$artist = new Artist($_REQUEST['artist_id']);
@@ -102,7 +102,7 @@ switch ($action) {
break;
case 'album':
$album = new Album($_REQUEST['album_id']);
- $song_ids = $album->get_song_ids();
+ $song_ids = $album->get_songs();
break;
case 'random_genre':
$genre = new Genre($_REQUEST['genre']);