From 7899c3488f4288c8618d73c8ea0ef8e5e07f9ae5 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Wed, 3 Aug 2005 05:46:33 +0000 Subject: added download selected button --- lib/artist.lib.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/artist.lib.php') 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 -- cgit