diff options
author | momo-i <momo-i@ampache> | 2009-02-23 02:12:39 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2009-02-23 02:12:39 +0000 |
commit | 2e5e71f8258a3ba79e2b26ca6e403c87950d4c41 (patch) | |
tree | 5a34eb3d9a0232652ff008692ab569ed0f9e14de /templates/show_import_playlist.inc.php | |
parent | c03954c2a0065159ea6a98664f42dd81990c764f (diff) | |
download | ampache-2e5e71f8258a3ba79e2b26ca6e403c87950d4c41.tar.gz ampache-2e5e71f8258a3ba79e2b26ca6e403c87950d4c41.tar.bz2 ampache-2e5e71f8258a3ba79e2b26ca6e403c87950d4c41.zip |
Fixed: show/import playlist #213 (thx ardbkr)
Diffstat (limited to 'templates/show_import_playlist.inc.php')
-rw-r--r-- | templates/show_import_playlist.inc.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/templates/show_import_playlist.inc.php b/templates/show_import_playlist.inc.php index 4f469442..35db5d4a 100644 --- a/templates/show_import_playlist.inc.php +++ b/templates/show_import_playlist.inc.php @@ -21,12 +21,11 @@ */ ?> <?php show_box_top(_('Importing a Playlist from a File')); ?> -<form method="post" name="import_playlist" action="<?php echo conf('web_path'); ?>/playlist.php" enctype="multipart/form-data"> +<form method="post" name="import_playlist" action="<?php echo Config::get('web_path'); ?>/playlist.php" enctype="multipart/form-data"> <table cellpadding="0" cellspacing="0"> <tr> <td> <?php echo _('Filename'); ?>: - <?php $GLOBALS['error']->print_error('filename'); ?> </td> <td><input type="file" name="filename" value="<?php echo scrub_out($_REQUEST['filename']); ?>" size="45" /></td> </tr> |