diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-19 04:56:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-19 04:56:07 +0000 |
commit | de0deca8541332971fe5cfa57b5343c7c4ee8542 (patch) | |
tree | 50c7d3bee3eedd5bad62f4ff325c36b563291e52 /templates | |
parent | 97469b849f08d985e538379143f729b9c8fa72d4 (diff) | |
download | ampache-de0deca8541332971fe5cfa57b5343c7c4ee8542.tar.gz ampache-de0deca8541332971fe5cfa57b5343c7c4ee8542.tar.bz2 ampache-de0deca8541332971fe5cfa57b5343c7c4ee8542.zip |
fixed an issue with songs stopping a little early depending on the client you use
Diffstat (limited to 'templates')
-rw-r--r-- | templates/sidebar_search.inc.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/templates/sidebar_search.inc.php b/templates/sidebar_search.inc.php index e5e2867b..6f9c7831 100644 --- a/templates/sidebar_search.inc.php +++ b/templates/sidebar_search.inc.php @@ -1,8 +1,9 @@ -<h4><?php echo _('Browse By'); ?></h4> -<select name="type"> - <option value="song"><?php echo _('Song Title'); ?></option> - <option value="album"><?php echo _('Albums'); ?></option> - <option value="artist"><?php echo _('Artist'); ?></option> - <option value="genre"><?php echo _('Genre'); ?></option> -</select> +<h4><?php echo _('Search'); ?></h4> +<form method="post" action="#" id="search_side" name="search_side"> +<input type="textbox" name="string" value="" size="8" /> +<hr /> +<h4><?php echo _('Fields'); ?></h4> +<input type="checkbox" name="all" value="1" /> <?php echo _('Titles'); ?><br /> +<input type="checkbox" name="year" value="1" /> <?php echo _('Year'); ?><br /> +</form> <hr /> |