diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-26 07:52:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-26 07:52:05 +0000 |
commit | cff8e731529103c63da1c2ef8e3dd0b91686b1c2 (patch) | |
tree | 3574642cbed6bdec1ca93f77d309cf941a6fa909 /templates/show_get_albumart.inc.php | |
parent | 3ccf8570aa6c2070e15bcd03fa0fa0351a80fba5 (diff) | |
download | ampache-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.php | 20 |
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"); ?> + <?php echo _('Artist'); ?> </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"); ?> + <?php echo _('Album'); ?> </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(); ?> |