summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-05 06:18:15 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-05 06:18:15 +0000
commit8b733244acee4f2416d78569f7a403488397e69c (patch)
treee9b722b4a087c82ffb6a08b6eb9ee6b2471c4f77 /templates
parent6276503dad74ac1cfc424ee6adebf3a720836141 (diff)
downloadampache-8b733244acee4f2416d78569f7a403488397e69c.tar.gz
ampache-8b733244acee4f2416d78569f7a403488397e69c.tar.bz2
ampache-8b733244acee4f2416d78569f7a403488397e69c.zip
make a good mess of things, and actually sync the starts_with patch from branches
Diffstat (limited to 'templates')
-rw-r--r--templates/sidebar_home.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/sidebar_home.inc.php b/templates/sidebar_home.inc.php
index ed059ece..4c483575 100644
--- a/templates/sidebar_home.inc.php
+++ b/templates/sidebar_home.inc.php
@@ -40,10 +40,10 @@ $ajax_info = Config::get('ajax_url'); $web_path = Config::get('web_path');
<?php if (count($allowed_filters)) { ?>
<li><h4><?php echo _('Filters'); ?></h4>
<div class="sb3">
- <?php if (in_array('alpha_match',$allowed_filters)) { ?>
+ <?php if (in_array('starts_with',$allowed_filters)) { ?>
<form id="multi_alpha_filter_form" method="post" action="javascript:void(0);">
<label id="multi_alpha_filterLabel" for="multi_alpha_filter"><?php echo _('Starts With'); ?></label>
- <input type="textbox" id="multi_alpha_filter" name="multi_alpha_filter" value="<?php echo scrub_out(Browse::get_filter('alpha_match')); ?>" onKeyUp="DelayRun(this,'400','ajaxState','<?php echo Config::get('ajax_url'); ?>?page=browse&action=browse&key=alpha_match','multi_alpha_filter');">
+ <input type="textbox" id="multi_alpha_filter" name="multi_alpha_filter" value="<?php echo scrub_out(Browse::get_filter('starts_with')); ?>" onKeyUp="DelayRun(this,'400','ajaxState','<?php echo Config::get('ajax_url'); ?>?page=browse&action=browse&key=starts_with','multi_alpha_filter');">
</form>
<?php } // end if alpha_match ?>
<?php if (in_array('minimum_count',$allowed_filters)) { ?>