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:
authorRobin Appelman <icewind@owncloud.com>2012-02-05 17:00:49 +0400
committerRobin Appelman <icewind@owncloud.com>2012-02-05 17:03:44 +0400
commit30673e478672af316c057f562a8a02babdbd3160 (patch)
tree90c5156def04dee80e9f96ce41ad2e49c34bb3df /lib/filestorage
parent25e777ef5e9c68ac45d32b71a0174febf74d47ef (diff)
writable not writeable
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 61343652f61..2c1f650cb9f 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -50,7 +50,7 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function is_readable($path){
return is_readable($this->datadir.$path);
}
- public function is_writeable($path){
+ public function is_writable($path){
return is_writable($this->datadir.$path);
}
public function file_exists($path){