summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/unshare.php
blob: b9230d257b767d9c32f01cb8446f9b34fedc082b (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
$RUNTIME_NOAPPS = true;

require_once('../../../lib/base.php');
require_once('../lib_share.php');

$source = "/".OC_User::getUser()."/files".$_GET['source'];
$uid_shared_with = $_GET['uid_shared_with'];
OC_Share::unshare($source, $uid_shared_with);

?>