summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-02-05 14:00:49 +0100
committerRobin Appelman <icewind@owncloud.com>2012-02-05 14:03:44 +0100
commit30673e478672af316c057f562a8a02babdbd3160 (patch)
tree90c5156def04dee80e9f96ce41ad2e49c34bb3df /lib/filesystem.php
parent25e777ef5e9c68ac45d32b71a0174febf74d47ef (diff)
downloadnextcloud-server-30673e478672af316c057f562a8a02babdbd3160.tar.gz
nextcloud-server-30673e478672af316c057f562a8a02babdbd3160.zip
writable not writeable
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 8e55575e665..a18072ecbc2 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -333,8 +333,8 @@ class OC_Filesystem{
static public function is_readable($path){
return self::$defaultInstance->is_readable($path);
}
- static public function is_writeable($path){
- return self::$defaultInstance->is_writeable($path);
+ static public function is_writable($path){
+ return self::$defaultInstance->is_writable($path);
}
static public function file_exists($path){
return self::$defaultInstance->file_exists($path);