diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-01 04:36:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-01 04:36:07 +0000 |
commit | 7603e48e9e7f953e67e62143686c1b5228262385 (patch) | |
tree | 36453345f1bf6a1d5237fb1e3771de257de98ce4 /templates/sidebar_browse.inc.php | |
parent | 4345f0785c81fbf9b067fa317399c067c674c65b (diff) | |
download | ampache-7603e48e9e7f953e67e62143686c1b5228262385.tar.gz ampache-7603e48e9e7f953e67e62143686c1b5228262385.tar.bz2 ampache-7603e48e9e7f953e67e62143686c1b5228262385.zip |
tweaked the sidebars, think they look a lot better now
Diffstat (limited to 'templates/sidebar_browse.inc.php')
-rw-r--r-- | templates/sidebar_browse.inc.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/templates/sidebar_browse.inc.php b/templates/sidebar_browse.inc.php index dc669c3f..2eb69995 100644 --- a/templates/sidebar_browse.inc.php +++ b/templates/sidebar_browse.inc.php @@ -5,15 +5,10 @@ $text = scrub_in($_REQUEST['action']) . '_ac'; ${$text} = ' selected="selected"'; ?> -<form id="browse_type" name="browse_type" action="<?php echo Config::get('web_path'); ?>/browse.php" method="get"> -<select name="action" onchange="document.getElementById('browse_type').submit();" > - <option value="">-- <?php echo _('Type'); ?> --</option> - <option value="song"<?php echo $song_ac; ?>><?php echo _('Song Title'); ?></option> - <option value="album"<?php echo $album_ac; ?>><?php echo _('Albums'); ?></option> - <option value="artist"<?php echo $artist_ac; ?>><?php echo _('Artist'); ?></option> - <option value="genre"<?php echo $genre_ac; ?>><?php echo _('Genre'); ?></option> -</select> -</form> +<span><a href="<?php $web_path; ?>/browse.php?action=song"><?php echo _('Song Title'); ?></a></span> +<span><a href="<?php $web_path; ?>/browse.php?action=album"><?php echo _('Albums'); ?></a></span> +<span><a href="<?php $web_path; ?>/browse.php?action=artist"><?php echo _('Artist'); ?></a></span> +<span><a href="<?php $web_path; ?>/browse.php?action=genre"><?php echo _('Genre'); ?></a></span> <hr /> <h4><?php echo _('Filters'); ?></h4> <?php show_alphabet_list($_REQUEST['alpha_match'],$_REQUEST['action']); ?> |