Skip to content

Commit f219bcc

Browse files
committed
update Updater.php
1 parent e4a85c4 commit f219bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Updater.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private function CreateFolder(string $FolderName, string $FolderPath = '')
236236
}
237237
if (true !== is_dir($download_path)) {
238238
$FolderName = ucfirst($FolderName);
239-
if (mkdir($download_path, 0700, true)) {
239+
if (mkdir($download_path, 0755, true)) {
240240
$this->log[] = [date("Y-m-d H:i:s"), "$FolderName folder created. $download_path"];
241241
} else {
242242
$this->log[] = [date("Y-m-d H:i:s"), "$FolderName folder cannot be created. $download_path"];

0 commit comments

Comments
 (0)