Use the cached fileinfo to get creatable permissions

This commit is contained in:
Robin Appelman 2014-10-13 13:09:05 +02:00
parent 4b9465b937
commit 19de425a50
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node
* @return void * @return void
*/ */
public function createDirectory($name) { public function createDirectory($name) {
if (!$this->fileView->isCreatable($this->path)) { if (!$this->info->isCreatable()) {
throw new \Sabre\DAV\Exception\Forbidden(); throw new \Sabre\DAV\Exception\Forbidden();
} }