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:
parent
53cab4e5ba
commit
c3bcd9b2bd
7 changed files with 152 additions and 19 deletions
|
@ -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
|
||||
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue