diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-02 05:20:26 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-02 05:20:26 +0000 |
commit | cf2e2488779f60251d66f375273d9b2583528f64 (patch) | |
tree | aeea65e98b0d7df40a2ed294a53dd254b2e61dd2 /templates/show_search_bar.inc.php | |
parent | f13037cc5466cf09bf1535acfea8809137927591 (diff) | |
download | ampache-cf2e2488779f60251d66f375273d9b2583528f64.tar.gz ampache-cf2e2488779f60251d66f375273d9b2583528f64.tar.bz2 ampache-cf2e2488779f60251d66f375273d9b2583528f64.zip |
moved search to upper right, removed the playlists from the left menubar, fixed a potential uncaught exception on id3 tags
Diffstat (limited to 'templates/show_search_bar.inc.php')
-rw-r--r-- | templates/show_search_bar.inc.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/show_search_bar.inc.php b/templates/show_search_bar.inc.php new file mode 100644 index 00000000..b9b2c94c --- /dev/null +++ b/templates/show_search_bar.inc.php @@ -0,0 +1,32 @@ +<?php +/* + + Copyright (c) 2001 - 2007 Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; version 2 + of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ +?> +<div id="sb_Subsearch"> + <form name="search" method="post" action="<?php echo $web_path; ?>/search.php" enctype="multipart/form-data" style="Display:inline"> + <input type="text" name="search_string" value="" size="5" /> + <input class="smallbutton" type="submit" value="<?php echo _('Search'); ?>" /> + <input type="hidden" name="action" value="quick_search" /> + <input type="hidden" name="method" value="fuzzy" /> + <input type="hidden" name="object_type" value="song" /> + </form> +</div> + |