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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/filestorage/local.php')
-rw-r--r--lib/filestorage/local.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php
index 87efdb15ad2..18bfd69d719 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -51,7 +51,7 @@ class OC_Filestorage_Local extends OC_Filestorage{
return is_readable($this->datadir.$path);
}
public function is_writeable($path){
- return is_writeable($this->datadir.$path);
+ return is_writable($this->datadir.$path);
}
public function file_exists($path){
return file_exists($this->datadir.$path);