diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-13 08:12:47 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-13 08:12:47 +0000 |
commit | 79b8e30e4e5b31ac2b21707b3e73d9ae485a7d3e (patch) | |
tree | 6c1a88e3e571ec767ab3cd147ee86fe576b07742 /lib/ui.lib.php | |
parent | 48e42c1b8cd28384dd7e52de8f0a4512e5dc3b4c (diff) | |
download | ampache-79b8e30e4e5b31ac2b21707b3e73d9ae485a7d3e.tar.gz ampache-79b8e30e4e5b31ac2b21707b3e73d9ae485a7d3e.tar.bz2 ampache-79b8e30e4e5b31ac2b21707b3e73d9ae485a7d3e.zip |
added loose name compare and improved rename
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 44a67710..128ba533 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -880,7 +880,7 @@ function show_artist_pulldown ($artist_id,$select_name='artist') { $artist->get_count(); if ( $artist_id == $r['id'] ) { - echo "\t<option value=\"" . $artist->id . "\" selected=\"selected\">". scrub_out($artist->name) . " (" . $artist->songs . ")</option>\n"; + echo "\t<option value=\"" . $artist->id . "\" selected=\"selected\">". scrub_out($artist->name) . "</option>\n"; } else { echo "\t<option value=\"" . $artist->id . "\">". scrub_out($artist->name) ."</option>\n"; |