missed one is_writeable

This commit is contained in:
Robin Appelman 2012-02-26 03:56:45 +01:00
parent c8c3b8a63e
commit 0af31a5328
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class OC_Filestorage_Shared extends OC_Filestorage {
}
public function mkdir($path) {
if ($path == "" || $path == "/" || !$this->is_writeable($path)) {
if ($path == "" || $path == "/" || !$this->is_writable($path)) {
return false;
} else {
$source = $this->getSource($path);