diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-31 05:19:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-31 05:19:11 +0000 |
commit | 3e8b855150d9bbd0538aadce5a3703a54c2b2de6 (patch) | |
tree | 1b52b0839e1d167c5ef6cba718d923c84bbc35ac /templates/sidebar_browse.inc.php | |
parent | 65bc8762b1dbcfd267555d11fc933418168110d5 (diff) | |
download | ampache-3e8b855150d9bbd0538aadce5a3703a54c2b2de6.tar.gz ampache-3e8b855150d9bbd0538aadce5a3703a54c2b2de6.tar.bz2 ampache-3e8b855150d9bbd0538aadce5a3703a54c2b2de6.zip |
added back the multi-char filter for browse
Diffstat (limited to 'templates/sidebar_browse.inc.php')
-rw-r--r-- | templates/sidebar_browse.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/sidebar_browse.inc.php b/templates/sidebar_browse.inc.php index 5c7ebe07..461e50d2 100644 --- a/templates/sidebar_browse.inc.php +++ b/templates/sidebar_browse.inc.php @@ -18,6 +18,10 @@ <li><h4><?php echo _('Filters'); ?></h4> <div class="sb3"> <?php show_alphabet_list($_REQUEST['alpha_match'],$_REQUEST['action']); ?> + <form id="multi_alpha_filter_form" method="post" action="javascript:void(0);"> + <input type="textbox" id="multi_alpha_filter" name="value" value="<?php echo scrub_out($_REQUEST['alpha_match']); ?>" onChange="<?php echo Ajax::action('?page=browse&action=browse&key=alpha_match','multi_alpha_filter','multi_alpha_filter_form'); ?>"> + <label id="multi_alpha_filterLabel" for="multi_art_filter"><?php echo _('Starts With'); ?></label> + </form> <!-- <input type="checkbox" onclick="ajaxPut('<?php echo $ajax_info; ?>?action=browse&key=min_count&value=1');return true;" value="1" /> <?php echo _('Minimum Count'); ?><br /> |