diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-11-27 17:22:48 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-11-27 17:22:48 +0100 |
commit | d2840a045d8d4e5996c847e8bbf93e80c111fdac (patch) | |
tree | 2ea166adec5f17d85e36e84faa676422e5b8527d /apps/files_sharing/lib/updater.php | |
parent | 5d2299eab8bc11c814a0fc352fa65687a3711869 (diff) | |
download | nextcloud-server-d2840a045d8d4e5996c847e8bbf93e80c111fdac.tar.gz nextcloud-server-d2840a045d8d4e5996c847e8bbf93e80c111fdac.zip |
Fixed sharing hook to not remove the share before the trashbin
Fixed the hook order between sharing app and trashbin
Diffstat (limited to 'apps/files_sharing/lib/updater.php')
-rw-r--r-- | apps/files_sharing/lib/updater.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 171999ea652..0c35b18c42b 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -89,9 +89,14 @@ class Shared_Updater { */ static public function deleteHook($params) { self::correctFolders($params['path']); - self::removeShare($params['path']); } + /** + * @param array $params + */ + static public function postDeleteHook($params) { + self::removeShare($params['path']); + } /** * @param array $params |