Przeglądaj źródła

Merge pull request #95 from elrido/rugk-permissions

Set permissions when saving files
El RIDO 10 lat temu
rodzic
commit
46d32948f1
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      lib/persistence.php

+ 1 - 0
lib/persistence.php

@@ -119,6 +119,7 @@ abstract class persistence
         if ($writtenBytes === false || $writtenBytes < strlen($data)) {
             throw new Exception('unable to write to file ' . $file, 13);
         }
+        @chmod($file, 0640); // protect file access
         return $file;
     }
 }