Merge pull request #11538 from owncloud/webdav-creatable-info
Use the cached fileinfo to get creatable permissions
This commit is contained in:
commit
6824a5ce7f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue