Fix getSourcePathAndOwner() for reshares

This commit is contained in:
Joas Schilling 2014-04-23 12:28:43 +02:00
Родитель 8e765d6623
Коммит cebe6b28c1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -153,7 +153,7 @@ class Hooks {
* @return array
*/
public static function getSourcePathAndOwner($path) {
$uidOwner = \OC\Files\Filesystem::getOwner(dirname($path));
$uidOwner = \OC\Files\Filesystem::getOwner($path);
$fileInfo = \OC\Files\Filesystem::getFileInfo($path);
$sourceFileInfo = $fileInfo->getData();
$file_path = substr($sourceFileInfo['path'], strlen('files'));