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_archive | |
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_archive')
-rw-r--r-- | apps/files_archive/lib/storage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_archive/lib/storage.php b/apps/files_archive/lib/storage.php index 86761663611..0723ae08ccf 100644 --- a/apps/files_archive/lib/storage.php +++ b/apps/files_archive/lib/storage.php @@ -78,10 +78,10 @@ class OC_Filestorage_Archive extends OC_Filestorage_Common{ return $this->archive->fileExists($path.'/')?'dir':'file'; } } - public function is_readable($path){ + public function isReadable($path){ return is_readable($this->path); } - public function is_writable($path){ + public function isUpdatable($path){ return is_writable($this->path); } public function file_exists($path){ |