diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-09 00:13:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-09 00:13:21 +0000 |
commit | b0caed617c15e4835149411e0b6d53f0ae1daaae (patch) | |
tree | f593983bc1ee374c15f053d80ed3a9c046c1f8a7 /lib/class/genre.class.php | |
parent | 494cb10de07a4753fd01c5922f928d7730979bf4 (diff) | |
download | ampache-b0caed617c15e4835149411e0b6d53f0ae1daaae.tar.gz ampache-b0caed617c15e4835149411e0b6d53f0ae1daaae.tar.bz2 ampache-b0caed617c15e4835149411e0b6d53f0ae1daaae.zip |
fixed browse showing up in the starting with box
Diffstat (limited to 'lib/class/genre.class.php')
-rw-r--r-- | lib/class/genre.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/class/genre.class.php b/lib/class/genre.class.php index 06b2bce5..49b21c52 100644 --- a/lib/class/genre.class.php +++ b/lib/class/genre.class.php @@ -275,6 +275,8 @@ class Genre { function show_match_list($match) { show_alphabet_list('genre','browse.php',$match,'genre'); + /* Detect if it's Browse, and if so don't fill it in */ + if ($match == 'Browse') { $match = ''; } show_alphabet_form($match,_("Show Genres starting with"),"browse.php?action=genre&match=$match"); } // show_match_list |