summaryrefslogtreecommitdiffstats
path: root/templates/sidebar_browse.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2008-04-02 12:38:47 +0000
committerspocky <spocky@ampache>2008-04-02 12:38:47 +0000
commit2544f5b5629d36658f92d4d0ad111563c2442f1b (patch)
tree74f24fe5d8a40716dfad4f0e5017cce03dd3878b /templates/sidebar_browse.inc.php
parent3c36e58d5441dd5a6990fc24332e69d330edf766 (diff)
downloadampache-2544f5b5629d36658f92d4d0ad111563c2442f1b.tar.gz
ampache-2544f5b5629d36658f92d4d0ad111563c2442f1b.tar.bz2
ampache-2544f5b5629d36658f92d4d0ad111563c2442f1b.zip
changed rating display to use 1 digit rounded average, a little bit different than "half star rating" request (Ticket #156), but easily done and also more precise.
minor change to sidebar filter display.
Diffstat (limited to 'templates/sidebar_browse.inc.php')
-rw-r--r--templates/sidebar_browse.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/sidebar_browse.inc.php b/templates/sidebar_browse.inc.php
index 936e847c..7bef4348 100644
--- a/templates/sidebar_browse.inc.php
+++ b/templates/sidebar_browse.inc.php
@@ -43,8 +43,8 @@ $allowed_filters = Browse::get_allowed_filters();
<div class="sb3">
<?php if (in_array('alpha_match',$allowed_filters)) { ?>
<form id="multi_alpha_filter_form" method="post" action="javascript:void(0);">
- <input type="textbox" id="multi_alpha_filter" name="multi_alpha_filter" value="<?php echo scrub_out($_REQUEST['alpha_match']); ?>" onKeyUp="DelayRun(this,'400','ajaxState','<?php echo Config::get('ajax_url'); ?>?page=browse&action=browse&key=alpha_match','multi_alpha_filter');">
<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($_REQUEST['alpha_match']); ?>" onKeyUp="DelayRun(this,'400','ajaxState','<?php echo Config::get('ajax_url'); ?>?page=browse&action=browse&key=alpha_match','multi_alpha_filter');">
</form>
<?php } // end if alpha_match ?>
<?php if (in_array('minimum_count',$allowed_filters)) { ?>