diff options
author | xgizzmo <xgizzmo@ampache> | 2006-01-11 02:59:17 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-01-11 02:59:17 +0000 |
commit | 603f145952f39164b961ac94a46b8a459e7adac0 (patch) | |
tree | 90fb10a0f1a1ea8396af8a41e629b1e63bac30d2 /templates/show_upload.inc | |
parent | 67d76f09c28d0c6abae6d966f4cc00a5428bdc74 (diff) | |
download | ampache-603f145952f39164b961ac94a46b8a459e7adac0.tar.gz ampache-603f145952f39164b961ac94a46b8a459e7adac0.tar.bz2 ampache-603f145952f39164b961ac94a46b8a459e7adac0.zip |
More code clean up this should about cover /templates
Diffstat (limited to 'templates/show_upload.inc')
-rw-r--r-- | templates/show_upload.inc | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/templates/show_upload.inc b/templates/show_upload.inc index 04d4f2ed..029e6c5c 100644 --- a/templates/show_upload.inc +++ b/templates/show_upload.inc @@ -15,12 +15,12 @@ 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. - -*/ + +*/ ?> <form action="<?php echo conf('web_path'); ?>/upload.php?" method="post" name="upload_form" enctype="multipart/form-data" id="upload_form"> @@ -44,35 +44,35 @@ </tr> <tr> <td> - <input size="40" type="file" name="ul_path1" id="ul_path1" /> - <?php $GLOBALS['error']->print_error('ul_path1'); ?> - </td> -</tr> + <input size="40" type="file" name="ul_path1" id="ul_path1" /> + <?php $GLOBALS['error']->print_error('ul_path1'); ?> + </td> +</tr> <tr> <td> - <input size="40" type="file" name="ul_path2" id="ul_path2" /> + <input size="40" type="file" name="ul_path2" id="ul_path2" /> <?php $GLOBALS['error']->print_error('ul_path2'); ?> - </td> -</tr> + </td> +</tr> <tr> - <td> - <input size="40" type="file" name="ul_path3" id="ul_path3" /> + <td> + <input size="40" type="file" name="ul_path3" id="ul_path3" /> <?php $GLOBALS['error']->print_error('ul_path3'); ?> </td> -</tr> +</tr> <tr> - <td> - <input size="40" type="file" name="ul_path4" id="ul_path4" /> + <td> + <input size="40" type="file" name="ul_path4" id="ul_path4" /> <?php $GLOBALS['error']->print_error('ul_path3'); ?> - </td> -</tr> + </td> +</tr> <tr> - <td> + <td> <input type="hidden" name="action" value="upload" /> - <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo _("max_upload_size"); ?>" /> - <input class='button' type="submit" value="<?php echo _("Upload"); ?>" /> - </td> -</tr> + <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo _("max_upload_size"); ?>" /> + <input class='button' type="submit" value="<?php echo _("Upload"); ?>" /> + </td> +</tr> </table> </form> |