diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-16 19:55:25 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-16 19:55:25 +0000 |
commit | be194f4f72443307998816293985831926460cce (patch) | |
tree | 8d38d88fa34b06423dcada2c7fd33b4c5d871548 /lib/class/genre.class.php | |
parent | 9e915e256086a06ab5ec996d3a153f92c8ae4848 (diff) | |
download | ampache-be194f4f72443307998816293985831926460cce.tar.gz ampache-be194f4f72443307998816293985831926460cce.tar.bz2 ampache-be194f4f72443307998816293985831926460cce.zip |
fixed stupid typo causing show all to fail on genre
Diffstat (limited to 'lib/class/genre.class.php')
-rw-r--r-- | lib/class/genre.class.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/class/genre.class.php b/lib/class/genre.class.php index 5723ec7a..b7772679 100644 --- a/lib/class/genre.class.php +++ b/lib/class/genre.class.php @@ -249,6 +249,7 @@ class Genre { switch ($match) { case 'Show_All': case 'show_all': + case 'Show_all': $sql = "SELECT id FROM genre"; break; case 'Browse': @@ -274,6 +275,8 @@ class Genre { */ function show_match_list($match) { + + require (conf('prefix') . '/templates/show_box_top.inc.php'); show_alphabet_list('genre','browse.php',$match,'genre'); /* Detect if it's Browse, and if so don't fill it in */ |