Pārlūkot izejas kodu

Merge pull request #95 from elrido/rugk-permissions

Set permissions when saving files
El RIDO 10 gadi atpakaļ
vecāks
revīzija
46d32948f1
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  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;
     }
 }