summaryrefslogtreecommitdiffstats
path: root/templates/show_import_playlist.inc.php
diff options
context:
space:
mode:
authorpb1dft <pb1dft@ampache>2006-11-17 00:43:11 +0000
committerpb1dft <pb1dft@ampache>2006-11-17 00:43:11 +0000
commitca3d4572837b4caebee850e11fe3f591bd765dff (patch)
treee5b7ffc246295257ba8e4ff466061341647245ce /templates/show_import_playlist.inc.php
parentad6644d6cb748929108dad3143021e85ed048906 (diff)
downloadampache-ca3d4572837b4caebee850e11fe3f591bd765dff.tar.gz
ampache-ca3d4572837b4caebee850e11fe3f591bd765dff.tar.bz2
ampache-ca3d4572837b4caebee850e11fe3f591bd765dff.zip
Fixed upload playlist and a minor issue in most popular
Diffstat (limited to 'templates/show_import_playlist.inc.php')
-rw-r--r--templates/show_import_playlist.inc.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/show_import_playlist.inc.php b/templates/show_import_playlist.inc.php
index c4fd6284..8e0b8ceb 100644
--- a/templates/show_import_playlist.inc.php
+++ b/templates/show_import_playlist.inc.php
@@ -21,16 +21,16 @@
*/
?>
<form method="post" name="import_playlist" action="<?php echo conf('web_path'); ?>/playlist.php" enctype="multipart/form-data">
-<span class="header2"><?php echo _('Importing a Playlist from a File'); ?></span>
-<table border="0" cellpadding="0" cellspacing="0" class="border" style="border: 1px solid black;">
-<tr class="<?php echo flip_class(); ?>">
+<?php show_box_top(_('Importing a Playlist from a File')); ?>
+<table border="0" cellpadding="0" cellspacing="0">
+<tr>
<td>
<?php echo _('Filename'); ?>:
<?php $GLOBALS['error']->print_error('filename'); ?>
</td>
- <td><input type="text" name="filename" value="<?php echo scrub_out($_REQUEST['filename']); ?>" size="45" /></td>
+ <td><input type="file" name="filename" value="<?php echo scrub_out($_REQUEST['filename']); ?>" size="45" /></td>
</tr>
-<tr class="<?php echo flip_class(); ?>">
+<tr>
<td>
<?php echo _('Playlist Type'); ?>
</td>
@@ -41,7 +41,7 @@
</select>
</td>
</tr>
-<tr class="<?php echo flip_class(); ?>">
+<tr>
<td>&nbsp;</td>
<td>
<input type="hidden" name="action" value="import_playlist" />
@@ -49,4 +49,5 @@
</td>
</tr>
</table>
+<?php show_box_bottom(); ?>
</form>