fixed no longer possible direct access/mount of VFS root via WebDAV after r36606

This commit is contained in:
Ralf Becker 2011-09-19 11:40:18 +00:00
parent eb0d6b31bd
commit c41b9f6d2c

View File

@ -355,7 +355,7 @@ class vfs_webdav_server extends HTTP_WebDAV_Server_Filesystem
foreach($files['files'] as $n => $info)
{
$path = $info['path'];
if (!$n && substr($info['path'],-1) == '/') $path = substr($info['path'],0,-1);
if (!$n && $info['path'] != '/' && substr($info['path'],-1) == '/') $path = substr($info['path'],0,-1);
$path2n[$path] = $n;
// adding some properties used instead of regular DAV times