diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-24 17:42:07 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-24 20:10:28 -0400 |
commit | f7b89f047504740224f664917d6588c1fe203877 (patch) | |
tree | 5cce4d672681a025466dce8b7237cf17b652eab9 /apps/files_external/lib/webdav.php | |
parent | c60c6024a7f02fc9548bc8b8f45f02efa1f9346f (diff) | |
download | nextcloud-server-f7b89f047504740224f664917d6588c1fe203877.tar.gz nextcloud-server-f7b89f047504740224f664917d6588c1fe203877.zip |
Add CRUDS permissions calls to filesystem, deprecate is_readable() and is_writable()
Diffstat (limited to 'apps/files_external/lib/webdav.php')
-rw-r--r-- | apps/files_external/lib/webdav.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 3d13518f57b..675fb9518b1 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -109,11 +109,11 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function is_readable($path){ + public function isReadable($path){ return true;//not properly supported } - public function is_writable($path){ + public function isUpdatable($path){ return true;//not properly supported } |