diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 06:09:51 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 06:09:51 +0000 |
commit | aa16b0a34a4713e0b215746bd4a2c4ba02c1f2c0 (patch) | |
tree | 73008bf2bbd848eb9ff06fbb0f517010b96f5961 /templates | |
parent | bd0008f450fe55b28590e209917da8a61ebdc373 (diff) | |
download | ampache-aa16b0a34a4713e0b215746bd4a2c4ba02c1f2c0.tar.gz ampache-aa16b0a34a4713e0b215746bd4a2c4ba02c1f2c0.tar.bz2 ampache-aa16b0a34a4713e0b215746bd4a2c4ba02c1f2c0.zip |
last commits of the night
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.inc | 4 | ||||
-rw-r--r-- | templates/show_upload.inc | 24 |
2 files changed, 5 insertions, 23 deletions
diff --git a/templates/header.inc b/templates/header.inc index 06a45f3d..2fbf47bc 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -34,10 +34,10 @@ if (conf('use_rss')) { ?> <?php } ?> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> <title><?php echo conf('site_title'); ?> - <?php echo $location['title']; ?></title> +<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/default.css" type="text/css" /> +<link rel="stylesheet" href="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/templates/default.css" type="text/css" /> </head> <body> -<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/default.css" type="text/css"> -<link rel="stylesheet" href="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/templates/default.css" type="text/css"> <script src="<?php echo $web_path; ?>/lib/general.js" language="javascript" type="text/javascript"></script> <script src="<?php echo $web_path; ?>/modules/kajax/ajax.js" language="javascript" type="text/javascript"></script> <div id="maincontainer"> diff --git a/templates/show_upload.inc b/templates/show_upload.inc index e2ccb542..a836131b 100644 --- a/templates/show_upload.inc +++ b/templates/show_upload.inc @@ -24,11 +24,10 @@ ?> <form action="<?php echo conf('web_path'); ?>/upload.php?" method="post" name="upload_form" enctype="multipart/form-data" id="upload_form"> -<table class="text-box"> +<?php show_box_top(_('Uploading Music to Ampache')); ?> +<table> <tr> <td> - <h3><?php echo _('Uploading Music to Ampache'); ?><br /></h3> - <p> <b><?php echo _('The following Audio file formats are supported'); ?></b> </p> <ul> @@ -50,29 +49,12 @@ </tr> <tr> <td> - <input size="40" type="file" name="ul_path2" id="ul_path2" /> - <?php $GLOBALS['error']->print_error('ul_path2'); ?> - </td> -</tr> -<tr> - <td> - <input size="40" type="file" name="ul_path3" id="ul_path3" /> - <?php $GLOBALS['error']->print_error('ul_path3'); ?> - </td> -</tr> -<tr> - <td> - <input size="40" type="file" name="ul_path4" id="ul_path4" /> - <?php $GLOBALS['error']->print_error('ul_path3'); ?> - </td> -</tr> -<tr> - <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> </table> +<?php show_box_bottom(); ?> </form> |