Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
* removed unecessary and incomplete chmod in mkdir
Signed-off-by: Björn Gottschall <[email protected]>
  • Loading branch information
Björn Gottschall committed Mar 18, 2022
commit 78c02f4b60293cacc2df9fdd55c01cb946dc7d6e
1 change: 0 additions & 1 deletion lib/private/Files/Storage/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ public function getId() {
public function mkdir($path) {
$sourcePath = $this->getSourcePath($path);
$result = @mkdir($sourcePath, 0777, true);
chmod($sourcePath, 0755);
return $result;
}

Expand Down