summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-12-24 22:41:41 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-12-24 22:41:41 +0000
commit5415c2e847032896907946c98d68a254399e4416 (patch)
treeaba2003807368afae8825dbdd7f80944cc4e5ce1
parent621c5c78fa1e53cf3bd9f13692588ad5631e345f (diff)
downloadampache-5415c2e847032896907946c98d68a254399e4416.tar.gz
ampache-5415c2e847032896907946c98d68a254399e4416.tar.bz2
ampache-5415c2e847032896907946c98d68a254399e4416.zip
wups
-rw-r--r--modules/lib.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/modules/lib.php b/modules/lib.php
index 162d60e3..e37acd49 100644
--- a/modules/lib.php
+++ b/modules/lib.php
@@ -125,43 +125,6 @@ function show_genre_pulldown ($genre, $complete, $lines= "'10' multiple='multipl
} // show_genre_pulldown()
-/**
- * show_catalog_pulldown
- * This has been changed, first is the name of the
- * dropdown select, the second is the style to be applied
- *
- */
-
-function show_catalog_pulldown ($name='catalog',$style) {
-
-
- // find the genres we have in use
- $sql = "SELECT id,name FROM catalog ORDER BY name";
-
- $db_result = mysql_query($sql, dbh());
-
- echo "\n<select name=\"" . $name . "\" style=\"" . $style . "\">\n";
-
- echo " <option value=\"-1\" selected=\"selected\">All</option>\n";
-
- while ( $r = mysql_fetch_row($db_result) )
- {
- // $r[0] = genre id
- $catalog_name = htmlspecialchars($r[1]);
-
- if ( $catalog == $r[0] )
- {
- echo " <option value=\"${r[0]}\" selected=\"selected\">$catalog_name</option>\n";
- }
- else
- {
- echo " <option value=\"${r[0]}\">$catalog_name</option>\n";
- }
- }
- echo "\n</select>\n";
-} // show_catalog_pulldown()
-
-
/*
* update_counter()
*