summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/unshare.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/ajax/unshare.php')
-rw-r--r--apps/files_sharing/ajax/unshare.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/ajax/unshare.php b/apps/files_sharing/ajax/unshare.php
index d50e7963a05..02a59c4016b 100644
--- a/apps/files_sharing/ajax/unshare.php
+++ b/apps/files_sharing/ajax/unshare.php
@@ -2,11 +2,10 @@
OCP\JSON::checkAppEnabled('files_sharing');
OCP\JSON::checkLoggedIn();
+OCP\JSON::callCheck();
$source = '/'.OCP\USER::getUser().'/files'.$_POST['source'];
$uid_shared_with = $_POST['uid_shared_with'];
OC_Share::unshare($source, $uid_shared_with);
OCP\JSON::success();
-
-?>