summaryrefslogtreecommitdiffstats
path: root/templates/show_get_albumart.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-26 07:52:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-26 07:52:05 +0000
commitcff8e731529103c63da1c2ef8e3dd0b91686b1c2 (patch)
tree3574642cbed6bdec1ca93f77d309cf941a6fa909 /templates/show_get_albumart.inc.php
parent3ccf8570aa6c2070e15bcd03fa0fa0351a80fba5 (diff)
downloadampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.gz
ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.bz2
ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.zip
fixed acls and improved the classic theme a little more
Diffstat (limited to 'templates/show_get_albumart.inc.php')
-rw-r--r--templates/show_get_albumart.inc.php20
1 files changed, 9 insertions, 11 deletions
diff --git a/templates/show_get_albumart.inc.php b/templates/show_get_albumart.inc.php
index 2de886b3..b847a980 100644
--- a/templates/show_get_albumart.inc.php
+++ b/templates/show_get_albumart.inc.php
@@ -20,33 +20,30 @@
*/
?>
-
+<?php show_box_top(_('Customize Search')); ?>
<form name="coverart" method="get" action="<?php echo conf('web_path'); ?>/albums.php" style="Displain:inline;">
-<table class="text-box">
+<table>
<tr>
- <td>
- <span class="header1"><?php echo _("Customize Search"); ?></span>
- </td>
</tr>
<tr>
<td>
- <?php echo _("Artist"); ?>&nbsp;
+ <?php echo _('Artist'); ?>&nbsp;
</td>
<td>
- <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo $artistname; ?>" />
+ <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo scrub_out($artistname); ?>" />
</td>
</tr>
<tr>
<td>
- <?php echo _("Album"); ?>&nbsp;
+ <?php echo _('Album'); ?>&nbsp;
</td>
<td>
- <input type="text" size="20" id="album_name" name="album_name" value="<?php echo $albumname; ?>" />
+ <input type="text" size="20" id="album_name" name="album_name" value="<?php echo scrub_out($albumname); ?>" />
</td>
</tr>
<tr>
<td>
- <?php echo _("Direct URL to Image"); ?>
+ <?php echo _('Direct URL to Image'); ?>
</td>
<td>
<input type="text" size="40" id="cover" name="cover" value="" />
@@ -56,8 +53,9 @@
<td>
<input type="hidden" name="action" value="find_art" />
<input type="hidden" name="album_id" value="<?php echo $album->id; ?>" />
- <input type="submit" value="<?php echo _("Get Art"); ?>" />
+ <input type="submit" value="<?php echo _('Get Art'); ?>" />
</td>
</tr>
</table>
</form>
+<?php show_box_bottom(); ?>