summaryrefslogtreecommitdiffstats
path: root/templates/show_get_albumart.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_get_albumart.inc.php')
-rw-r--r--templates/show_get_albumart.inc.php56
1 files changed, 28 insertions, 28 deletions
diff --git a/templates/show_get_albumart.inc.php b/templates/show_get_albumart.inc.php
index 0995e740..c90a0938 100644
--- a/templates/show_get_albumart.inc.php
+++ b/templates/show_get_albumart.inc.php
@@ -1,5 +1,5 @@
<?php
-/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
+/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
@@ -24,43 +24,43 @@
<form enctype="multipart/form-data" name="coverart" method="post" action="<?php echo Config::get('web_path'); ?>/albums.php?action=find_art&amp;album_id=<?php echo $album->id; ?>&amp;artist_name=<?php echo urlencode($_REQUEST['artist_name']);?>&amp;album_name=<?php echo urlencode($_REQUEST['album_name']); ?>&amp;cover=<?php echo urlencode($_REQUEST['cover']); ?>" style="Display:inline;">
<table>
<tr>
- <td>
- <?php echo T_('Artist'); ?>&nbsp;
- </td>
- <td>
- <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo scrub_out(unhtmlentities($artistname)); ?>" />
- </td>
+ <td>
+ <?php echo T_('Artist'); ?>&nbsp;
+ </td>
+ <td>
+ <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo scrub_out(unhtmlentities($artistname)); ?>" />
+ </td>
</tr>
<tr>
- <td>
- <?php echo T_('Album'); ?>&nbsp;
- </td>
- <td>
- <input type="text" size="20" id="album_name" name="album_name" value="<?php echo scrub_out(unhtmlentities($albumname)); ?>" />
- </td>
+ <td>
+ <?php echo T_('Album'); ?>&nbsp;
+ </td>
+ <td>
+ <input type="text" size="20" id="album_name" name="album_name" value="<?php echo scrub_out(unhtmlentities($albumname)); ?>" />
+ </td>
</tr>
<tr>
- <td>
- <?php echo T_('Direct URL to Image'); ?>
- </td>
- <td>
- <input type="text" size="40" id="cover" name="cover" value="" />
- </td>
+ <td>
+ <?php echo T_('Direct URL to Image'); ?>
+ </td>
+ <td>
+ <input type="text" size="40" id="cover" name="cover" value="" />
+ </td>
</tr>
<tr>
- <td>
- <?php echo T_('Local Image'); ?>
- </td>
- <td>
- <input type="file" size="40" id="file" name="file" value="" />
- </td>
+ <td>
+ <?php echo T_('Local Image'); ?>
+ </td>
+ <td>
+ <input type="file" size="40" id="file" name="file" value="" />
+ </td>
</tr>
</table>
<div class="formValidation">
- <input type="hidden" name="action" value="find_art" />
- <input type="hidden" name="album_id" value="<?php echo $album->id; ?>" />
+ <input type="hidden" name="action" value="find_art" />
+ <input type="hidden" name="album_id" value="<?php echo $album->id; ?>" />
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo Config::get('max_upload_size'); ?>" />
- <input type="submit" value="<?php echo T_('Get Art'); ?>" />
+ <input type="submit" value="<?php echo T_('Get Art'); ?>" />
</div>
</form>
<?php UI::show_box_bottom(); ?>