From: Bjoern Schiessle Date: Tue, 27 May 2014 19:15:25 +0000 (+0200) Subject: get unique_name value directly from the share array X-Git-Tag: v7.0.0alpha2~85^2~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=24f3f6823eb6c7d293295864799f4d19aeee3783;p=nextcloud-server.git get unique_name value directly from the share array --- diff --git a/apps/files_sharing/lib/sharedmount.php b/apps/files_sharing/lib/sharedmount.php index 873740f4a2d..97d6f464f3d 100644 --- a/apps/files_sharing/lib/sharedmount.php +++ b/apps/files_sharing/lib/sharedmount.php @@ -62,7 +62,7 @@ class SharedMount extends Mount implements MoveableMount { private static function updateFileTarget($newPath, &$share) { // if the user renames a mount point from a group share we need to create a new db entry // for the unique name - if ($share['share_type'] === \OCP\Share::SHARE_TYPE_GROUP && $this->uniqueNameSet() === false) { + if ($share['share_type'] === \OCP\Share::SHARE_TYPE_GROUP && $share['unique_name'] === false) { $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' .' `file_target`, `token`, `parent`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)');