diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-14 23:26:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-14 23:26:35 +0000 |
commit | 40a84aca6f6eaebc3c35656e2ec1aac64a189dc5 (patch) | |
tree | 96347d15b160b84f9c8e54fb99d25ffaa755b056 /artists.php | |
parent | 876575f63491226db28234519872380a1073d7e2 (diff) | |
download | ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.tar.gz ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.tar.bz2 ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.zip |
whole bunch of last-min fixes for Alpha2 release
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; |