summaryrefslogtreecommitdiffstats
path: root/lib/filestorage
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2012-01-08 01:53:40 +0100
committerRobin Appelman <icewind1991@gmail.com>2012-01-08 01:53:40 +0100
commitd1edc360d9bd7d97c35d25b54dadec61004cd869 (patch)
tree7344744268280ccbdc194746a7b40dfc90a33260 /lib/filestorage
parent3844fb0e4ce093bb3c2e67d20f85f61b7723efdc (diff)
parent8f8985c3e53862e2ca6446f296d4835a9577faac (diff)
downloadnextcloud-server-d1edc360d9bd7d97c35d25b54dadec61004cd869.tar.gz
nextcloud-server-d1edc360d9bd7d97c35d25b54dadec61004cd869.zip
merge master into filesystem
Diffstat (limited to 'lib/filestorage')
-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);