Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-07-25 01:42:07 +0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-07-25 04:10:28 +0400
commitbf8a64f98ca183088e2b6c940651063f81a78cdf (patch)
treed69b29b16c75c53d79e8e107a39d699f18e4dcd1 /files_archive
parent8ca75fe27d1fc98f91465833f7ece221c53a2a99 (diff)
Add CRUDS permissions calls to filesystem, deprecate is_readable() and is_writable()
Diffstat (limited to 'files_archive')
-rw-r--r--files_archive/lib/storage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/files_archive/lib/storage.php b/files_archive/lib/storage.php
index 867616636..0723ae08c 100644
--- a/files_archive/lib/storage.php
+++ b/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){