diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-05-13 07:27:16 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-05-13 07:27:16 +0000 |
commit | 6546c826432b5c18c22a2ac2cd7dd1d77a7002c3 (patch) | |
tree | 425469fcd29d5fbb26455220b40d3f576802dc38 /templates | |
parent | ada740ec4123cf286c8abc3a09eb62ed80716fba (diff) | |
download | ampache-6546c826432b5c18c22a2ac2cd7dd1d77a7002c3.tar.gz ampache-6546c826432b5c18c22a2ac2cd7dd1d77a7002c3.tar.bz2 ampache-6546c826432b5c18c22a2ac2cd7dd1d77a7002c3.zip |
fixed playlists thing for real this time
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_import_playlist.inc.php | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/show_import_playlist.inc.php b/templates/show_import_playlist.inc.php index 05f32232..c4fd6284 100644 --- a/templates/show_import_playlist.inc.php +++ b/templates/show_import_playlist.inc.php @@ -21,20 +21,18 @@ */ ?> <form method="post" name="import_playlist" action="<?php echo conf('web_path'); ?>/playlist.php" enctype="multipart/form-data"> -<table border="0" cellpadding="0" cellspacing="0" class="border"> -<tr class="table-header" > - <td colspan="2" align="center"><?php echo _("Importing a Playlist from a File"); ?></td> -</tr> +<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(); ?>"> <td> - <?php echo _("Filename"); ?>: + <?php echo _('Filename'); ?>: <?php $GLOBALS['error']->print_error('filename'); ?> </td> - <td><input type="text" name="filename" value="<?php echo $_REQUEST['filename']; ?>" size="45" /></td> + <td><input type="text" name="filename" value="<?php echo scrub_out($_REQUEST['filename']); ?>" size="45" /></td> </tr> <tr class="<?php echo flip_class(); ?>"> <td> - <?php echo _("Playlist Type"); ?> + <?php echo _('Playlist Type'); ?> </td> <td> <select name="playlist_type"> @@ -47,7 +45,7 @@ <td> </td> <td> <input type="hidden" name="action" value="import_playlist" /> - <input type="submit" value="<?php echo _("Import Playlist"); ?>" /> + <input type="submit" value="<?php echo _('Import Playlist'); ?>" /> </td> </tr> </table> |