소스 검색

return 403 when mkdir failed on webDAV, fixes #2127

tags/v5.0.0RC3
Arthur Schiwon 11 년 전
부모
커밋
6acbadf418
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      lib/connector/sabre/directory.php

+ 3
- 1
lib/connector/sabre/directory.php 파일 보기

@@ -107,7 +107,9 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
public function createDirectory($name) {

$newPath = $this->path . '/' . $name;
\OC\Files\Filesystem::mkdir($newPath);
if(!\OC\Files\Filesystem::mkdir($newPath)) {
throw new Sabre_DAV_Exception_Forbidden('Could not create directory '.$newPath);
}

}


Loading…
취소
저장