Fix getting individual shared file information

This commit is contained in:
Bart Visscher 2012-09-24 20:39:20 +02:00
parent 7aca730f71
commit a80e0403a1
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ class OC_Files {
$info = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT);
}
else {
$info = OCP\Share::getItemSharedWith('file', '/'.$name, OC_Share_Backend_File::FORMAT_FILE_APP);
$path = substr($path, 7);
$info = OCP\Share::getItemSharedWith('file', $path, OC_Share_Backend_File::FORMAT_FILE_APP);
}
$info = $info[0];
}