diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-13 06:51:32 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-13 06:51:32 +0000 |
commit | 53cab4e5ba7e791c0c759a91895dffb072441017 (patch) | |
tree | 54a9eb268cdc83d4d8c3d809cda91a33d03eb42d /templates/show_alphabet_form.inc.php | |
parent | e7fea90327419214531371543662056c1398470d (diff) | |
download | ampache-53cab4e5ba7e791c0c759a91895dffb072441017.tar.gz ampache-53cab4e5ba7e791c0c759a91895dffb072441017.tar.bz2 ampache-53cab4e5ba7e791c0c759a91895dffb072441017.zip |
initial genre browsing and improved artists/albums browse code (made it consistent)
Diffstat (limited to 'templates/show_alphabet_form.inc.php')
-rw-r--r-- | templates/show_alphabet_form.inc.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/show_alphabet_form.inc.php b/templates/show_alphabet_form.inc.php new file mode 100644 index 00000000..383683b6 --- /dev/null +++ b/templates/show_alphabet_form.inc.php @@ -0,0 +1,38 @@ +<?php +/* + + Copyright (c) 2001 - 2005 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; either version 2 + of the License, or (at your option) any later version. + + 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. + +*/ +/*! + @header + A template file + +*/ + +?> + +<form name="f" method="get" action="<?php echo conf('web_path') . "/$action"; ?>" enctype="multipart/form-data"> + <label for="match" accesskey="S"><?php echo $text; ?> + <input type="text" size="3" id="match" name="match" value="<?php echo $match; ?>" /> + <input type="hidden" name="action" value="match" /> +</form> +<br /> + + + |