From: Bjoern Schiessle Date: Fri, 20 Mar 2015 14:51:25 +0000 (+0100) Subject: also call generateTarget for group share to add the correct prefix if share_folder... X-Git-Tag: v8.1.0alpha1~135^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=223cca2a0742ce4b506a61ae47b03b9a2af0a926;p=nextcloud-server.git also call generateTarget for group share to add the correct prefix if share_folder is defined in config.php --- diff --git a/lib/private/share/share.php b/lib/private/share/share.php index aeb9a9a4767..dc0b2f6c5bf 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1825,9 +1825,10 @@ class Share extends \OC\Share\Constants { if (in_array(\OCP\User::getUser(), $users)) { unset($users[array_search(\OCP\User::getUser(), $users)]); } - $groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], - $uidOwner, $suggestedItemTarget); - $groupFileTarget = $filePath; + $groupItemTarget = Helper::generateTarget($itemType, $itemSource, + $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + $groupFileTarget = Helper::generateTarget($itemType, $itemSource, + $shareType, $shareWith['group'], $uidOwner, $filePath); // add group share to table and remember the id as parent $queriesToExecute['groupShare'] = array( @@ -1840,7 +1841,7 @@ class Share extends \OC\Share\Constants { 'permissions' => $permissions, 'shareTime' => time(), 'fileSource' => $fileSource, - 'fileTarget' => $filePath, + 'fileTarget' => $groupFileTarget, 'token' => $token, 'parent' => $parent, 'expiration' => $expirationDate,