diff options
author | momo-i <momo-i@ampache> | 2009-03-13 07:03:26 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2009-03-13 07:03:26 +0000 |
commit | a6e171869ba8e09592ec1b1c3b610c7f056e37b4 (patch) | |
tree | 19d8bc5d0d2928862c2ca05b83d8c8224582f096 /playlist.php | |
parent | 678e08a604687bb8ea0843faea327209e1657fdf (diff) | |
download | ampache-a6e171869ba8e09592ec1b1c3b610c7f056e37b4.tar.gz ampache-a6e171869ba8e09592ec1b1c3b610c7f056e37b4.tar.bz2 ampache-a6e171869ba8e09592ec1b1c3b610c7f056e37b4.zip |
Fixed: import ok but playlist not shown #412
Diffstat (limited to 'playlist.php')
-rw-r--r-- | playlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playlist.php b/playlist.php index 5d54da03..c4824e41 100644 --- a/playlist.php +++ b/playlist.php @@ -84,7 +84,7 @@ switch ($_REQUEST['action']) { $catalog = new Catalog(); $result = $catalog->import_m3u($filename); - $url = Config::get('web_path') . '/playlist.php'; + $url = Config::get('web_path') . '/playlist.php?action=show_playlist&playlist_id='.$playlist_id; if($result == false) { $title = _('Playlist Not Imported'); $body = $reason; |