Browse Source

Cache sharing disabled in the view

remotes/origin/ldap-read-range-support
Robin Appelman 10 years ago
parent
commit
45d0396404
  1. 5
      lib/private/files/view.php

5
lib/private/files/view.php

@ -1339,11 +1339,12 @@ class View {
$folderId = $data['fileid'];
$contents = $cache->getFolderContentsById($folderId); //TODO: mimetype_filter
$sharingDisabled = \OCP\Util::isSharingDisabledForUser();
/**
* @var \OC\Files\FileInfo[] $files
*/
$files = array_map(function (array $content) use ($path, $storage, $mount) {
if (\OCP\Util::isSharingDisabledForUser()) {
$files = array_map(function (array $content) use ($path, $storage, $mount, $sharingDisabled) {
if ($sharingDisabled) {
$content['permissions'] = $content['permissions'] & ~\OCP\Constants::PERMISSION_SHARE;
}
$owner = $this->getUserObjectForOwner($storage->getOwner($content['path']));

Loading…
Cancel
Save