diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-26 22:34:19 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-26 22:34:19 +0000 |
commit | 99496ce46b725515701696fe8150754cabf1ac40 (patch) | |
tree | c80743b9a0f15fb155a1db3b813ab94ca71d66ab | |
parent | 5fce261ae2a1fad5a6f1e437a5245a7b1bf981f3 (diff) | |
download | ampache-99496ce46b725515701696fe8150754cabf1ac40.tar.gz ampache-99496ce46b725515701696fe8150754cabf1ac40.tar.bz2 ampache-99496ce46b725515701696fe8150754cabf1ac40.zip |
sync to trunk
-rwxr-xr-x | docs/CHANGELOG | 1 | ||||
-rw-r--r-- | templates/sidebar_home.inc.php | 2 | ||||
-rw-r--r-- | util.php | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index b323dead..8ab3e320 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,7 @@ -------------------------------------------------------------------------- v.3.5-Alpha1 + - Remember Starts With value even if you switch tabs - Fixed rating caching so it actually completely works now - Removed redundent UPDATE on session table due to /util.php - Added Batch Download to single Artist view diff --git a/templates/sidebar_home.inc.php b/templates/sidebar_home.inc.php index 01b4d7d8..ced2b9c4 100644 --- a/templates/sidebar_home.inc.php +++ b/templates/sidebar_home.inc.php @@ -66,7 +66,7 @@ $ajax_info = Config::get('ajax_url'); $web_path = Config::get('web_path'); <?php if (in_array('alpha_match',$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($_REQUEST['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('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)) { ?> @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or |