mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #13928 from owncloud/prevent_ghost_files_master
prevent creation of ghost directories
This commit is contained in:
commit
c4d9ae8af4
1 changed files with 9 additions and 2 deletions
|
|
@ -1166,13 +1166,20 @@ class Share extends \OC\Share\Constants {
|
|||
* @return null
|
||||
*/
|
||||
protected static function unshareItem(array $item, $newParent = null) {
|
||||
|
||||
$shareType = (int)$item['share_type'];
|
||||
$shareWith = null;
|
||||
if ($shareType !== \OCP\Share::SHARE_TYPE_LINK) {
|
||||
$shareWith = $item['share_with'];
|
||||
}
|
||||
|
||||
// Pass all the vars we have for now, they may be useful
|
||||
$hookParams = array(
|
||||
'id' => $item['id'],
|
||||
'itemType' => $item['item_type'],
|
||||
'itemSource' => $item['item_source'],
|
||||
'shareType' => (int)$item['share_type'],
|
||||
'shareWith' => $item['share_with'],
|
||||
'shareType' => $shareType,
|
||||
'shareWith' => $shareWith,
|
||||
'itemParent' => $item['parent'],
|
||||
'uidOwner' => $item['uid_owner'],
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue