diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-25 02:03:48 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-25 02:03:48 +0100 |
commit | 0e5d920a64954cd415ae17f73bdabf8d1fe6cf39 (patch) | |
tree | 6ba6630df2e2840fc11c635f7294af9039446313 /genplaylist.php | |
parent | d350aac197f8ad5ab501c3b25b6543e802de0e47 (diff) | |
download | istreamdev-0e5d920a64954cd415ae17f73bdabf8d1fe6cf39.tar.gz istreamdev-0e5d920a64954cd415ae17f73bdabf8d1fe6cf39.tar.bz2 |
Fixed some character issues
Diffstat (limited to 'genplaylist.php')
-rwxr-xr-x | genplaylist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/genplaylist.php b/genplaylist.php index cd08fcc..9fa6016 100755 --- a/genplaylist.php +++ b/genplaylist.php @@ -13,7 +13,7 @@ $name = $_REQUEST['name']; exec('rm playlist/*'); - exec('ln -s ' .addcslashes(quotemeta($path), " &") .'* playlist'); + exec('ln -s ' .addcslashes(quotemeta($path), " &'") .'* playlist'); $dir_handle = @opendir($path); if (!$dir_handle) |