diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 03:00:32 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 03:38:46 -0500 |
commit | ef4d3660605efc7f1328d4533b0f4bfb6c1107e2 (patch) | |
tree | e4377fb129a899e65aaaf421f8c97098aecaedd5 /templates/show_get_albumart.inc.php | |
parent | 8a750c3e875d590d351c3042570a134fcdf03e5d (diff) | |
download | ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.gz ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.bz2 ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.zip |
Cosmetics: death to tabs
The refactoring I've been doing has reminded me of my strong preference
for spaces, and I feel inclined to impose my will on the tree.
Diffstat (limited to 'templates/show_get_albumart.inc.php')
-rw-r--r-- | templates/show_get_albumart.inc.php | 56 |
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&album_id=<?php echo $album->id; ?>&artist_name=<?php echo urlencode($_REQUEST['artist_name']);?>&album_name=<?php echo urlencode($_REQUEST['album_name']); ?>&cover=<?php echo urlencode($_REQUEST['cover']); ?>" style="Display:inline;"> <table> <tr> - <td> - <?php echo T_('Artist'); ?> - </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'); ?> + </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'); ?> - </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'); ?> + </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(); ?> |