diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-04 02:45:03 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-04 02:45:03 +0000 |
commit | 19276f57a9eeacae7829629baa35fcb28d77419f (patch) | |
tree | 35c2d658e6cb4e3b9e1a1706e0e3d3ab8af88f0d /lib/class/browse.class.php | |
parent | 848a1bc5388301e128cb5c2c4d8dcb5d06721bb4 (diff) | |
download | ampache-19276f57a9eeacae7829629baa35fcb28d77419f.tar.gz ampache-19276f57a9eeacae7829629baa35fcb28d77419f.tar.bz2 ampache-19276f57a9eeacae7829629baa35fcb28d77419f.zip |
fixed genre and artist view... mostly also fixed batch downloads
Diffstat (limited to 'lib/class/browse.class.php')
-rw-r--r-- | lib/class/browse.class.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index 8cfb27d6..8613559f 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -303,6 +303,16 @@ class Browse { require_once Config::get('prefix') . '/templates/show_albums.inc.php'; show_box_bottom(); break; + case 'genre': + show_box_top(); + require_once Config::get('prefix') . '/templates/show_genres.inc.php'; + show_box_bottom(); + break; + case 'artist': + show_box_top(); + require_once Config::get('prefix') . '/templates/show_artists.inc.php'; + show_box_bottom(); + break; default: // Rien a faire break; |