summaryrefslogtreecommitdiffstats
path: root/lib/artist.lib.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-08-03 05:46:33 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-08-03 05:46:33 +0000
commit7899c3488f4288c8618d73c8ea0ef8e5e07f9ae5 (patch)
tree64be964b83e9990aa110ce55bd27da3112622bf1 /lib/artist.lib.php
parentf5fd6eb89a6416a65bf088c922d7566113509a7c (diff)
downloadampache-7899c3488f4288c8618d73c8ea0ef8e5e07f9ae5.tar.gz
ampache-7899c3488f4288c8618d73c8ea0ef8e5e07f9ae5.tar.bz2
ampache-7899c3488f4288c8618d73c8ea0ef8e5e07f9ae5.zip
added download selected button
Diffstat (limited to 'lib/artist.lib.php')
-rw-r--r--lib/artist.lib.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/artist.lib.php b/lib/artist.lib.php
index 38a93c75..aa89e482 100644
--- a/lib/artist.lib.php
+++ b/lib/artist.lib.php
@@ -93,6 +93,7 @@ function show_artists ($match = '') {
$offset_limit = $_SESSION['userdata']['offset_limit'];
}
$view = new View($query,'artists.php','name',$total_items,$offset_limit);
+
} // end if creating view object
if (is_array($match)) {
@@ -102,6 +103,7 @@ function show_artists ($match = '') {
$db_results = mysql_query($view->sql, $dbh);
while ($r = @mysql_fetch_array($db_results)) {
+ //FIXME: This seriously needs to be updated to use the artist object
$artist_info = get_artist_info($r[0]);
$artist = format_artist($artist_info);
// Only Add this artist if there is information to go along with it