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

Use the cached fileinfo to get creatable permissions
This commit is contained in:
Vincent Petry 2014-10-15 14:39:07 +02:00
commit 6824a5ce7f
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
*/
public function createDirectory($name) {
if (!$this->fileView->isCreatable($this->path)) {
if (!$this->info->isCreatable()) {
throw new \Sabre\DAV\Exception\Forbidden();
}