diff options
Diffstat (limited to 'artists.php')
-rw-r--r-- | artists.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/artists.php b/artists.php index 19a8836c..e361e27d 100644 --- a/artists.php +++ b/artists.php @@ -30,7 +30,8 @@ if (!isset($_REQUEST['action'])) { $_REQUEST['action'] = "match"; } $action = scrub_in($_REQUEST['action']); show_template('header'); -show_menu_items('Artists'); +show_menu_items('Browse'); +show_browse_menu('Artists'); show_clear(); @@ -68,17 +69,17 @@ switch($action) { preg_match("/^(\w*)/", $match, $matches); show_alphabet_list('artists','artists.php',$match); if ($match === "Browse") { - show_alphabet_form('',_("Show Artists starting with"),"albums.php?action=match"); + show_alphabet_form('',_("Show Artists starting with"),"artists.php?action=match"); show_artists(); } elseif ($match === "Show_all") { - show_alphabet_form('',_("Show Artists starting with"),"albums.php?action=match"); + show_alphabet_form('',_("Show Artists starting with"),"artists.php?action=match"); $_SESSION['view_offset_limit'] = 999999; show_artists(); } else { $chr = preg_replace("/[^a-zA-Z0-9]/", "", $matches[1]); - show_alphabet_form($chr,_("Show Artists starting with"),"albums.php?action=match"); + show_alphabet_form($chr,_("Show Artists starting with"),"artists.php?action=match"); if ($chr == '') { show_artists('A'); @@ -91,7 +92,7 @@ switch($action) { default: show_alphabet_list('artists','artists.php'); - show_alphabet_form('',_("Show Artists starting with"),"albums.php?action=match"); + show_alphabet_form('',_("Show Artists starting with"),"artists.php?action=match"); show_artists('A'); break; |