diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-24 23:11:52 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-24 23:11:52 +0100 |
commit | 8b5cae4e61249e671cca45cd1d37ee56d8dc543c (patch) | |
tree | db7a3f6eecc6d407e751564f5018326c8d726d01 /includes/inc_audio.php | |
parent | 3d72b276b17a920a3f319afd2aec44d7bdf7a40e (diff) | |
download | istreamdev-8b5cae4e61249e671cca45cd1d37ee56d8dc543c.tar.gz istreamdev-8b5cae4e61249e671cca45cd1d37ee56d8dc543c.tar.bz2 |
Support wav and aac
Fixed dirs containing &
Diffstat (limited to 'includes/inc_audio.php')
-rwxr-xr-x | includes/inc_audio.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/inc_audio.php b/includes/inc_audio.php index 458689f..85d3d64 100755 --- a/includes/inc_audio.php +++ b/includes/inc_audio.php @@ -36,8 +36,8 @@ if ($medianame_array[0]) // Alphabetical sorting sort($medianame_array); - exec('rm playlist/*.mp3'); - exec('ln -s ' .addcslashes(quotemeta($mediapath .$subdir), " ") .'*.mp3 playlist'); + exec('rm playlist/*'); + exec('ln -s ' .addcslashes(quotemeta($mediapath .$subdir), " &") .'* playlist'); $count = count($medianame_array); |