diff options
author | Alib <aliboba@free.fr> | 2010-03-15 17:56:22 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-15 17:56:22 +0100 |
commit | 438912c0c4a4075a5cd74cf9689451c9df4bbe34 (patch) | |
tree | 334e03bbba01b002a34d3cbf81ee7e600ec7bff6 /genplaylist.php | |
parent | a8012963c23e7e5eaf487ee9e192ae5c4d4ccff2 (diff) | |
download | istreamdev-438912c0c4a4075a5cd74cf9689451c9df4bbe34.tar.gz istreamdev-438912c0c4a4075a5cd74cf9689451c9df4bbe34.tar.bz2 |
New Jquery branch. Initial development version for istreamdev 1.0
Diffstat (limited to 'genplaylist.php')
-rwxr-xr-x | genplaylist.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/genplaylist.php b/genplaylist.php deleted file mode 100755 index c1c7135..0000000 --- a/genplaylist.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - - if (file_exists('config.php')) - include ('config.php'); - else - include ('config_default.php'); - include ('includes/inc_files.php'); - header('Content-Type: text/xml'); - echo "<?xml version=\"1.0\"?>\n"; - echo "<status>\n"; - - $path = $_REQUEST['path']; - $name = $_REQUEST['name']; - - exec('rm playlist/*'); - exec('echo > playlist/dummy.txt'); - exec('ln -s ' .addcslashes(quotemeta($path), " &'") .'* playlist'); - - echo "<m3u>ok</m3u>\n"; - - echo "</status>\n"; - -?> |