]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix getPermissionsCache for storage wrapper
authorRobin Appelman <icewind@owncloud.com>
Thu, 25 Jul 2013 13:59:57 +0000 (15:59 +0200)
committerRobin Appelman <icewind@owncloud.com>
Thu, 25 Jul 2013 13:59:57 +0000 (15:59 +0200)
lib/files/storage/wrapper/wrapper.php

index 4feb0520f12865bc5f5f6f6d4b5ece9390abb9ed..0336c27efa1241558066847f6ddcdef1931eda23 100644 (file)
@@ -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);
        }
 
        /**