summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/sharedstorage.php
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2011-08-17 18:00:37 -0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2011-08-17 18:00:37 -0400
commit4078e0a24249183e15a02e5955ea821e75775016 (patch)
tree709ec2a5faea256de3472aafd87171c7ebe9903e /apps/files_sharing/sharedstorage.php
parent1303e40b6e151a3ff1ef55da89684daf9ad887ec (diff)
downloadnextcloud-server-4078e0a24249183e15a02e5955ea821e75775016.tar.gz
nextcloud-server-4078e0a24249183e15a02e5955ea821e75775016.zip
-1 is now a class constant (UNSHARED), for unsharing files from self
Diffstat (limited to 'apps/files_sharing/sharedstorage.php')
-rw-r--r--apps/files_sharing/sharedstorage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/sharedstorage.php b/apps/files_sharing/sharedstorage.php
index fc7b7ddc9ce..9650770ab27 100644
--- a/apps/files_sharing/sharedstorage.php
+++ b/apps/files_sharing/sharedstorage.php
@@ -113,7 +113,7 @@ class OC_Filestorage_Shared extends OC_Filestorage {
// If the item is in the current directory and has a different name than the source, add it to the arrays
if (dirname($item['target']) == $path) {
// If the item was unshared from self, add it it to the arrays
- if ($item['permissions'] == -1) {
+ if ($item['permissions'] == OC_Share::UNSHARED) {
$sources[] = basename($item['source']);
$targets[] = "";
} else {