1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 19:41:55 +02:00

genre browsing should work now

This commit is contained in:
Karl 'vollmerk' Vollmer 2005-08-13 08:32:30 +00:00
parent 53cab4e5ba
commit c3bcd9b2bd
7 changed files with 152 additions and 19 deletions

View file

@ -703,5 +703,18 @@ function show_genres($genres,$view) {
} // show_genres
/**
* show_genre
* this shows a single genre item which is basicly just a link to the albums/artists/songs of said genre
* @package Genre
* @catagory Display
*/
function show_genre($genre_id) {
$genre = new Genre($genre_id);
require (conf('prefix') . '/templates/show_genre.inc.php');
} // show_genre
?>