summaryrefslogtreecommitdiffstats
path: root/templates/show_browse_menu.inc
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-08-13 06:51:32 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-08-13 06:51:32 +0000
commit53cab4e5ba7e791c0c759a91895dffb072441017 (patch)
tree54a9eb268cdc83d4d8c3d809cda91a33d03eb42d /templates/show_browse_menu.inc
parente7fea90327419214531371543662056c1398470d (diff)
downloadampache-53cab4e5ba7e791c0c759a91895dffb072441017.tar.gz
ampache-53cab4e5ba7e791c0c759a91895dffb072441017.tar.bz2
ampache-53cab4e5ba7e791c0c759a91895dffb072441017.zip
initial genre browsing and improved artists/albums browse code (made it consistent)
Diffstat (limited to 'templates/show_browse_menu.inc')
-rw-r--r--templates/show_browse_menu.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_browse_menu.inc b/templates/show_browse_menu.inc
index 63b7b4fb..6edafcfe 100644
--- a/templates/show_browse_menu.inc
+++ b/templates/show_browse_menu.inc
@@ -34,7 +34,7 @@ $web_path = conf('web_path');
$items = array(
_("Artist") => "$web_path/artists.php",
_("Albums") => "$web_path/albums.php",
- _("Genre") => "$web_path/genres.php",
+ _("Genre") => "$web_path/browse.php?action=genre",
);
?>
@@ -42,7 +42,7 @@ $items = array(
<?php
foreach ( array_keys($items) as $item ) {
- if ( $admin_highlight == $item ) {
+ if ( _($highlight) == $item ) {
echo "<li class=\"active\"><a class=\"active\" href=\"$items[$item]\">" . $item . "</a></li>\n";
}
else {