diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-07-09 10:49:51 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-07-09 10:49:51 +0000 |
commit | 9a31db22970c2ced87106b758601d7113ab749da (patch) | |
tree | 13f8f1bd3888c70b3af4e7a52e4f2fef094231cd /modules | |
parent | 80cd693722be8ea823d9f3abb36e1e7d79125820 (diff) | |
download | ampache-9a31db22970c2ced87106b758601d7113ab749da.tar.gz ampache-9a31db22970c2ced87106b758601d7113ab749da.tar.bz2 ampache-9a31db22970c2ced87106b758601d7113ab749da.zip |
commented out line that broke UNC bulk downloads per #483 this could be done better but this should work
Diffstat (limited to 'modules')
-rw-r--r-- | modules/archive/archive.lib.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/archive/archive.lib.php b/modules/archive/archive.lib.php index fa6d45d3..1d258463 100644 --- a/modules/archive/archive.lib.php +++ b/modules/archive/archive.lib.php @@ -207,7 +207,8 @@ class archive { foreach ($list as $current)
{
$current = str_replace("\\", "/", $current);
- $current = preg_replace("/\/+/", "/", $current);
+ // Commented out per #483 I'm pretty sure this should be ok.
+ //$current = preg_replace("/\/+/", "/", $current);
$current = preg_replace("/\/$/", "", $current);
if (strstr($current, "*"))
{
|