Skip to content
Snippets Groups Projects
Commit bfaed9a8 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

Merge pull request #273 from owncloud/fix_webdav_shared_91

Return empty array if file does not exist inside Shared folder, fixes issue #91
parents bb40d14e 3d13c9db
Branches
No related tags found
No related merge requests found
......@@ -46,6 +46,8 @@ class OC_Files {
if ($path == '/Shared') {
list($info) = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT);
} else {
$info = array();
if (OC_Filesystem::file_exists($path)) {
$info['size'] = OC_Filesystem::filesize($path);
$info['mtime'] = OC_Filesystem::filemtime($path);
$info['ctime'] = OC_Filesystem::filectime($path);
......@@ -53,6 +55,7 @@ class OC_Files {
$info['encrypted'] = false;
$info['versioned'] = false;
}
}
} else {
$info = OC_FileCache::get($path);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment