diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-07-25 15:59:57 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-07-25 15:59:57 +0200 |
commit | 4e490b0688bcfff7bd489af039b0db79427fbb94 (patch) | |
tree | 36126753ad2a2d620fbaab2f8d48521de056ddf4 /lib/files | |
parent | cd8f0c21ced2283a8cf8b48af1c91d665a1dab49 (diff) | |
download | nextcloud-server-4e490b0688bcfff7bd489af039b0db79427fbb94.tar.gz nextcloud-server-4e490b0688bcfff7bd489af039b0db79427fbb94.zip |
fix getPermissionsCache for storage wrapper
Diffstat (limited to 'lib/files')
-rw-r--r-- | lib/files/storage/wrapper/wrapper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/storage/wrapper/wrapper.php b/lib/files/storage/wrapper/wrapper.php index 4feb0520f12..0336c27efa1 100644 --- a/lib/files/storage/wrapper/wrapper.php +++ b/lib/files/storage/wrapper/wrapper.php @@ -395,7 +395,7 @@ class Wrapper implements \OC\Files\Storage\Storage { * @return \OC\Files\Cache\Permissions */ public function getPermissionsCache($path = '') { - return $this->storage->getPermissions($path); + return $this->storage->getPermissionsCache($path); } /** |