Merge pull request #11538 from owncloud/webdav-creatable-info

Use the cached fileinfo to get creatable permissions
remotes/origin/fix-10825
Vincent Petry 12 years ago
commit 6824a5ce7f
  1. 2
      lib/private/connector/sabre/directory.php

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

Loading…
Cancel
Save